- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 03:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 04:53 AM
It is not possible to display pop up window using business rule as it runs in server side.
You can get Info message or Error message by using gs.addInfoMessage() or gs.addErrorMessage() .
For more details please follow link
Scripting Alert, Info, and Error Messages - ServiceNow Wiki.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 04:16 AM
gs.addInfoMessage("Your Message") or gs.addErrorMessage("Your Error Message")
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 04:19 AM
These wont help create a Pop-Up on the screen. If you are requiring only an Alert on the screen, they would work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 04:22 AM
These can`t be accomplished with business rules since they run on the server side, not client...
sounds like the GlideDialogWindow class/object may be your best friend if you are looking beyond native JS ALERT...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 04:39 AM
Thanks Guys