Category: Activity Logging Parameter
Compatible with: Composer 8
Parameter Name: MFTSValue0
Parameter Value: [text]
Parameter Requirements: UF0 and MFTS0
Parameter Description: MFTSValue0 (Master Field to Set Value) determines the value of the master field to be set.
Do not use with &, %, < or > or other special characters.
Example Usage
&UF0=1
MFTS0=Member_Status__c
&MFTSValue0=Patron
Checkbox Usage
When setting a checkbox field with the MFTSValue0 parameter, use TRUE as the MFTSValue:
&MFTS0=HasProducts__c
&MFTSValue0=Patron
Using Dates with MFTSValue0
Use TODAY
to set the value to today's date.
Examples:
&MFTSValue0={!TEXT(TODAY())}
&MFTSValue0=TODAY
&MFTSValue0={!Today}
Add days to a date using this syntax:
&MFTSValue0={!TEXT(TODAY()+7)
Conga Batch/Trigger Usage
Because Batch and Trigger use a formula field instead of a button URL, the syntax is slightly different:
"&MFTSValue0="+ TEXT( TODAY() )
Date/Time Usage
If updating a date/time field, use this syntax:
Ensure you either use literal text strings or Salesforce syntax for formulas. Do not mix the two. For example, either use TODAY (text literal) or use {!TEXT(TODAY())} (Salesforce button formula). Do not mix the two and use TODAY().