Forum Post: Re: How Can I Change The Process-field In Scripts?

  • Thread starter Thread starter msiraj
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top