Apex Trigger Hookup
Include pushtopics.TriggerServices.execute() in the triggers of both the source object and any objects involved in aggregations when AGG functions are used in field mappings.
trigger TriggerName on SourceObjectApiName (before insert, after insert, before update, after update, before delete, after delete, after undelete) {
pushtopics.TriggerServices.execute();
}For users to access the trigger(s) of this Executable, they must have at least Read access to the Executable record:
Assign Permission Set: Ensure all internal users are assigned the DSP: Data Sync Pro Starter permission set (providing bare-minimum access to the packaged objects and components).
Grant Record Access: Ensure that All Internal Users Have Read Access is checked (auto-checked when #Trigger, #Data List, or #Action Button is enabled), or manually share this Executable with users to provide Read access.
Example: Hook the Account Trigger with Data Sync Pro
Add
pushtopics.TriggerServices.execute();to the Account trigger.Include all trigger events (before/after insert, update, delete, undelete).
