Siebel Business Process Designer Administration Guide > Reference Materials for Siebel Workflow > Passing Parameters to and from Workflow and Data Manipulation within Workflows >

Example Script: Invoking the Workflow Process Manager Business Service and Passing It the Input Property Set


The following is a sample script that invokes the Workflow Process Manager business service and passes it the input property set.

var svc = TheApplication(). GetService("Workflow Process Manager");

svc.InvokeMethod("RunProcess", psInputs, psOutputs); //Call the Workflow

var sErr = psOutputs.GetProperty("sErr"); //Check the Workflow status

Siebel Business Process Designer Administration Guide