You can use COMCreateObject("WScript.Shell") for displaying the custom message or for debugging the issues in eScript. This can be used in server script and in older versions of Siebel (which supports vb script).
Below is the example:
//Instantiate
var msg = COMCreateObject("WScript.Shell");
//Display message
msg.popup("Custom text" + variable ,0,"Message title");
//Example: of text and variable concatenation
msg.popup("Doc Num:"+docNum +" Owner Id:"+OwnerId+" P Id:"+POAsrId,0,"Debus Script");
How to popup a message in Siebel
Labels:
Bookshelf
,
COMCreateObject
,
Knowledgebase
,
RaiseErrorText
,
Siebel
,
Siebel Client
,
Siebel CRM
,
Siebel Tools
,
WScript.Shell
,

Comments
Post a Comment