M
msiraj
Guest
To update Workflow Process field, you can leverage client-side and server-side API as stated below: Client-side: rbf_setFieldValue('process','665937') ; Where, 'process' is the integration name of Workflow-process field. '665937' is the Workflow Process ID. Server-side: rbv_api.setFieldValue("ProcessOrder", {!id}, "process", 665937); where "ProcessOrder" is object integration name {!id} is object id. 'process' is process field integration name. 665937 is the Workflow Process ID (passed as INTEGER argument) .
Continue reading...
Continue reading...