Pages

Saturday, May 3, 2014

Popup messsage using Siebel Server Scripts

Popup messsage using Siebel Server Scripts


  • In browser Script, alert method  is used to pop up a message and upon clicking on OK button it will allow user to continue the Operation.
                       alert ("the message");   //browser script
  •  Whereas in Server script, we often use TheApplication().RaiseErrorText(), which will pop up the message but will not allow to continue the operation.
                     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 wSSh = COMCreateObject("WScript.Shell");

      wSSh.Popup("Your Message or Variable");               //server script
Share This

2 comments:

  1. Can I use COMCreateObject() on Linux siebel server?

    ReplyDelete
  2. Hi,
    This solution just for testing on local device. It will not work on server version.

    ReplyDelete

Designed By Seo Blogger Templates- Published By Gooyaabi Templates