R
Rajkumar Mateti
Guest
Hi MeryK, To run After Restore triggers nothing need to done particularly. After restore trigger is working fine for me, Following is the script that executed. Can you please let us know what exactly you are trying? in following example i am updating the first name and middle name field values with last name field value. var arr=rbv_api.selectQuery("SELECT lastName FROM SendEmailTriggerObj", 1, {!id}); rbv_api.setFieldValue("SendEmailTriggerObj", {!id}, "firstName", arr[0][0]); x = new Array(); x["middleName"]="{!lastName}"; rbv_api.updateRecord("SendEmailTriggerObj", {!id}, x); Thanks, Rajkumar
Continue reading...
Continue reading...