Last active
December 11, 2015 00:28
-
-
Save longjasonm/4516601 to your computer and use it in GitHub Desktop.
A Force.com Validation Trigger to verify that all of the BANT fields are filled in before a lead can be saved as a TQL.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ISPICKVAL(Lead_Contact_Status__c, "TQL") | |
&& | |
OR ( | |
ISPICKVAL( Budget__c,"" ), | |
ISPICKVAL( Need__c,"" ), | |
ISPICKVAL( Authority__c,"" ), | |
ISPICKVAL( Timing__c,"" ) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment