Siebel Open UI, Tools, Scripting and EAI (MOSC)

MOSC Banner

Is there any way to show cursor busy while a workflow runs in serverscript (on field change)?

edited Nov 30, 2018 12:21AM in Siebel Open UI, Tools, Scripting and EAI (MOSC) 1 commentAnswered

Our workflow runs in a bc level. I created a PM/PR and added - SiebelApp.S_App.uiStatus.Busy(); But it is not working.

code:

function BusComp_SetFieldValue (FieldName)
{

..
if(sCaseId != "" && sCaseId != null)
{
var svc = TheApplication().GetService("Workflow Process Manager");
var Input = TheApplication().NewPropertySet();
var Output = TheApplication().NewPropertySet();
  Input.SetProperty("ProcessName", "WCB CIS Case Search VBC Interface Workflow");
...
  svc.InvokeMethod("RunProcess", Input, Output);
...
return (ContinueOperation);
}

=======
PM code:

if( typeof( SiebelAppFacade.AppletPM ) === "undefined" ){ ....
function OnFieldChange( control, value ){
if( control.GetName() === "sCaseId" && value != ""){
SiebelApp.S_App.uiStatus.Busy();
....

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center