how to invoke workflows using scripting
Answers were Sorted based on User's Feedback
Answer / vignesh
PFB the way to invokde the workflow through scripting,
Steps:
var sbs = TheApplication().GetService("Workflow Process
Manager");
var psInputs = TheApplication
().NewPropertySet();
var psOutputs = TheApplication
().NewPropertySet();
var sId = this.GetFieldValue("Id");
psInputs.SetProperty ("ProcessName", "WF
Name");
psInputs.SetProperty ("Object Id", sId);
sbs.InvokeMethod("RunProcess", psInputs,
psOutputs);
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / guest
we can invoke the workflows using scripting. Call the business
service "Workflow process Manager", pass the inputs and invoke
the method "Runprocess".
Here is sample code,
var inpPS = theApplication().NewPropertySet();
var outPS = theApplication().NewPropertySet();
var oBS = theApplication().GetService("Workflow Process
Manager");
outPS = oBS.InvokeMethod("RunProcess", inpPS);
| Is This Answer Correct ? | 1 Yes | 1 No |
How do you convert one country currencies to another country currencies please explain me
Explain why do we use symbolic strings in siebel 77?
What are the test cases which you will be writing provided the scenario is in an Accounts tab, there are three different status like ‘Open’, ‘Active’ and ‘Pending’. Every night a nightly job will be running and the Accounts which are in ‘Open’ status will be changed to ‘Active’ after the job runs. The user does not have the privilege to change the Status from ‘Open’ to ‘Active’, only privilege he has is to change to ‘Pending’ status.
Explain is it posible to access more than one database at a single siebel application?
What is inbound and outbound in picklist?
Explain why does data not from related child tables not get exported when data is exported using an interface table?
Explain the differences between siebel 7.8 and 8.0?
best practices in scripting and workflows?
How to call external webpage from siebel application?
Explain pick applet, dynamic picklist: which will be better if performance issue is considered?
What value will get stored in the database when a field has both predefault value and post default value?
Define a Siebel file system?