Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

download

DC

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.

Note:

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)}