- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 10:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2022 11:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 10:43 PM
Create a business rule depending on your when to run condition in( insert,update..) and in the advanced
(function executeRule(current, previous /*null when async*/) {
// Add your code here
if(gs.getUserName() !="Your Name")
{
gs.addInfoMessage(" The Message you want to show");
}
})(current, previous);
Mark correct and helpful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 10:51 PM
Thank you for your comment.
But,
What I intended was a way to display it on the screen of a user other than the logged in user (myself).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2022 11:50 PM
That is not possible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2022 12:13 AM
hi ks,
You can create before/after (insert ,update) business rule. Please find the attached screenshots.
(function executeRule(current, previous /*null when async*/) {
// Add your code here
if(gs.getUserName() != "Abel Tuter")
{
gs.addInfoMessage("you are champion......");
}
})(current, previous);