Category: Advanced Control Parameter
Compatible with: Composer 8
Parameter Name: DC
Parameter Value: [0 or 1]
Parameter Requirements: None
Parameter Description: The DC parameter stands for Disable Conga (Execution). This parameter is usually set as part of a Salesforce formula to evaluate the contents of a field and, in turn, prevent the execution of Conga if the field does not meet some criteria.
The best way to accomplish this is with a formula field in Salesforce that returns a numeric value of "1" or "0".
Value | Definition |
---|
0 | Allows Composer to run (default). |
1 | Does not allow Composer to run. |
Example:
&DC={!IF(ISPICKVAL(Opportunity.StageName, "Closed Won"), "0", "1")} or &DC={!IF(Field = value, 1, 0)}
CODE