Use of priority field in business rule
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2018 10:16 PM
Hi,
Can anyone please let me know the use of priority field on business rule?
I know the use of order field on business rule but not priority field.
Thanks & Regards,
Abhishek
Labels:
- Labels:
-
Scripting and Coding
5 REPLIES 5

Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-26-2022 03:33 AM
Senario :- Perform Display business rule to get the value of Priority field and set it to one new field Priority for user.
(function executeRule(current, previous /*null when async*/) {
// Add your code here
current.u_integer_2 = current.priority;
})(current, previous);