function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
MattwestMattwest 

Problem with Object Converter Trigger

I'm using Object Converter (https://appexchange.salesforce.com/apex/listingDetail?listingId=a0N30000003JeOiEAK) to convert from a custom object called Service_Call__c to another custom object. I'm trying to use the documentation which only gives the following as a guide:
global static sObject OBJCNVTR__SmartEngine.Convert(sObject oSObject, string s
trMID){}
I got some help (because I'm not very experienced) and they came back with the following, but told me that it was odd to have the global static and the method call on the same line. Anyway, can anyone help me out?
trigger SCconvert on Service_Call__c (after update) {
	
    list<id> Service_CallId = new list<id>();
     for(Service_Call__c sc: trigger.new){
     if(sc.Release__c == true
        
         global static sObject OBJCNVTR__SmartEngine.Convert(sObject Service_Call__c, string SC_Conversion){}
     } 
}

 
PratikPratik (Salesforce Developers) 
Hi Matt,

Please post this in Review section of the app so the app rpovider can help you on this.

Thanks,
Pratik
MattwestMattwest
Thanks Pratik,
I have emailed thier support several times on this issue with no response. I hadn't thought of posting a question in a review, but I'll try it.

Matt