Hello,
I want to call a business process from a custom component which I am developing using the remote module.
I have seen that I need to use ProcessModuleUtilities to achieve that. Now, how do I get this ProcessModuleUtilities in my remote module?
I checked in the npm registry to install using npm but its not there.
Like
For a remote module, it would be better to use the devkit SDK to execute the process. See examples here:
Starting a process and getting process parameter results back
Ryan
For a remote module, it would be better to use the devkit SDK to execute the process. See examples here:
Starting a process and getting process parameter results back
Ryan
Ryan Farley,
I am trying to use the dev kit to call a business process but getting an error. Can you see if I am making any mistake !!
Sagar Rodda,
Maybe try forming the request like this?
{ request: "crt.RunBusinessProcessRequest", params: { processName: "name here", processParamters: { //... } } }
Ryan