|
Field
|
Value
|
|---|---|
|
Module
|
Dispatch Management
|
|
Submodule
|
Service Board
|
|
SET001
|
True
|
|
|
For production instances, Outbound Queue records are created only for failed transactions. Be sure to confirm that the tenant has been restarted after you first configure Salesforce integration information in the active System Setting record. Otherwise, real-time sync does not function properly.
|
delete [SELECT Id FROM SVMXC__SM_SB_Queue__c WHERE SVMXC__SM_Status__c = 'Error' limit 10000];
import com.servicemax.core.Database
def records = Database.query("select * from io_http_notification where io_status = 'Failure'")|
for(int i = 0; i < records.size(); i ++){
records[i].delete()
}