Checking Real-Time Sync Status
You can check real-time sync status on the Max side by using Max Admin. On the Salesforce side, you can run a SOQL statement in Workbench or use the Salesforce UI.
To check real-time sync status:
1. To check status on the Max side, in Max Admin, on the System Management () launchpad menu, click HTTP Notifications, and then check recent record status.
2. To check status on the Salesforce side, log into Workbench and execute the following SOQL statement to get the latest Outbound Queue record status:
SELECT CreatedDate,SVMXC__SM_Status__c,SVMXC__SM_Event_type__c,Id,SVMXC__SM_Record_to_Dispatch__c,SVMXC__SM_Error_log__c FROM SVMXC__SM_SB_Queue_Outbound__c order by CreatedDate DESC
* 
When the Enable Outbound Queue Full Log setting is disabled, HTTP Notifications are created only to update the status of Outbound Queue records for failed sync events, and records for successful platform events are not updated. Otherwise, one record is created for each real-time sync transaction.
3. To check status in the Salesforce UI, create a tab for SM_SB_Queue_Outbound__c, and then navigate to the Outbound Queue list view and check for newly created records.
* 
To view required columns, you must expose them to the view, as initially only the SB Queue Outbound Name column is visible.
4. In the Error Log column, open each record with an issue, and then fix the problem and click Retry.
* 
If any of the fields are not visible, expose them to the page layout. In customer orgs with the API client whitelisting feature enabled, to enable retry functionality, check Use Any API Client in the System Permissions page of the relevant user profile.
For more information:
Was this helpful?