- 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.
- Whereas in Server script, we often use TheApplication().RaiseErrorText(), which will pop up the message but will not allow to continue the operation.
- 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
Can I use COMCreateObject() on Linux siebel server?
ReplyDeleteHi,
ReplyDeleteThis solution just for testing on local device. It will not work on server version.