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:
|
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:
- Go to Setup > Object Manager.
- Select an object that you need to configure.
- Click .
- In the Apex Trigger window, select the Is Active checkbox.
- Enter the following code.
trigger <ObjectName>Trigger on <ObjectName> (after insert, after update, after delete) { Conga_4SF.CongaDualWriteUtils.initiateDualWrite(); }