Display a messgae on load if requested for is a VIP user (need to be bold and italic)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-30-2020 09:22 AM
Hi All,
please help me on the above question by using business rule
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2024 10:57 AM
BR
before
update/insert
(function executeRule(current, previous /*null when async*/ ) {
if (current.caller_id.vip == true) {//get the value of the caller Id
gs.addInfoMessage('CALLER is VIP');// show infomessage which confirm that the caller is VIP
} else {
gs.addErrorMessage('Is not VIP');//show infomessage which confirm that the caller is not VIP
}
})(current, previous);