Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2019 11:26 PM
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2019 11:30 PM
It depends on your use case.
May be you can try adding before query BR on the table with gs.addInfoMessage();
Thanks,
Ali
If I could help you with your Query then, please hit the Thumb Icon and mark my answer as Correct!!
Thank you,
Ali
Thank you,
Ali
5 REPLIES 5
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-08-2022 12:59 PM
This Before Query Business Rule worked well for me.
(function executeRule(current, previous /*null when async*/ ) {
// Add your code here
var uri = gs.action.getGlideURI();
if (uri.indexOf('list.do') > -1) {
gs.addInfoMessage("Your message here");
}
})(current, previous);