In this post, I am sharing all the methods I know to get interactive dialogue box in Siebel. Hope this will help someone in need.
Popup messsage using Vanilla Business Service
Business Service: LS Pharma Signature UI Service
Method Name: ShowConfirmDialog
Popup messsage using Siebel Server Scripts
TheApplication().RaiseErrorText(“the message”); //server script
- In order to pop up the message and Continue the Operation in Server script use the below Code
var Sh = COMCreateObject(“WScript.Shell”);
Sh.Popup(“This is coool!!”); //server script
Popup messsage using Siebel Browser Scripts
alert (“the message”); //browser script
Popup messsage using Siebel Open UI
Follow this Open a Popup Applet on Mouseover
[su_divider style=”dotted”]
@AskmeSiebel