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.

Show Page Sections

download

MFTSValue1

Category: Activity Logging Parameter

Compatible with: Composer 8

Parameter Name: MFTSValue1

Parameter Value: [text]

Parameter Requirements: UF0 and MFTS1

Parameter Description: MFTSValue1 (Master Field to Set Value) determines the value of the master field to be set.

Note:

Do not use with &, %, < or > or other special characters.

Example Usage

&UF0=1

MFTS1=Member_Status__c

&MFTSValue1=Patron

Checkbox Usage

When setting a checkbox field with the MFTSValue1 parameter, use TRUE as the MFTSValue:

&MFTS1=HasProducts__c

&MFTSValue1=Patron

Using Dates with MFTSValue1

Use TODAY to set the value to today's date.

Examples:

  • &MFTSValue1={!TEXT(TODAY())}
  • &MFTSValue1=TODAY
  • &MFTSValue1={!Today}

Add days to a date using this syntax:

  • &MFTSValue1={!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:

"&MFTSValue1="+ TEXT( TODAY() )

Date/Time Usage

If updating a date/time field, use this syntax:

  • &MFTSValue1=Now
Warning:

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().