Configuring the Bulk Retry Button
You can configure a button to retry real-time sync for multiple selected records via platform events.
* 
The governor limit for SOQL queries is 100. Therefore, you cannot retry more than 99 records.
Selected records that are successfully synched to Service Board are updated with a Status value of Success, and the Outbound Queue record is updated via an API call to Salesforce. Records that fail to publish as platform events are updated with an error message in the Error Log field and a Status value of Error.
To configure the Bulk Retry button:
1. In Salesforce, create a Visualforce page with the folllowing content and name it RetryMultipleRecords.
<apex:page standardController="SVMXC__SM_SB_Queue_Outbound__c" extensions="SVMXSB.SB_SendFailedRecords" recordSetVar="outboundQueues" action="{!sendFailedRecords}">

</apex:page>
2. In the SB Queue Outbound object, create a button with the following settings.
Option
Value
Name
Bulk Retry
Type
List Button
Content Source
Visualforce Page
Content
RetryMultipleRecords
3. Edit the SB Outbound List View record from the Search Layout and add the button to make it available in the list view of the relevant object.
For more information:
Was this helpful?