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.

APTS_Additional_DualWriteObjects

This admin entry allows you to add a comma-separated list of objects other than Apttus__APTS_Agreement__c, Attachment, and ContentDocumentLink that you need to sync to the Conga Platform for CLM.

Name

APTS_Additional_DualWriteObjects

Value

N/A

Code

Sample code:

Account, Opportunity, Apttus__Template__c

Note:

If you configure the APTS_Additional_DualWriteObjects property, you must create the corresponding mapping for the configured object in Conga Platform. For more information, see Creating and Managing Object Mappings.

You must also create triggers for the object. To create a trigger:

  1. Go to Setup > Object Manager.
  2. Select an object that you need to configure.
  3. Click Triggers > New.
  4. In the Apex Trigger window, select the Is Active checkbox.
  5. Enter the following code.
    trigger <ObjectName>Trigger on <ObjectName> (after insert, after update, after delete) { Conga_4SF.CongaDualWriteUtils.initiateDualWrite(); }