Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-15-2024 05:48 AM
Hello Community,
Can anyone give me the code to store the reject count of the approvals.
Solved! Go to Solution.
2 ACCEPTED SOLUTIONS
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-15-2024 05:51 AM
Hello Ankit,
You need to configure after BR with below code: -
var count = current.u_rejected_count;
if (current.state == 'rejected' && previous.state != 'rejected') {
current.u_rejected_count = count + 1;
}
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-15-2024 05:51 AM
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-15-2024 05:51 AM
Hello Ankit,
You need to configure after BR with below code: -
var count = current.u_rejected_count;
if (current.state == 'rejected' && previous.state != 'rejected') {
current.u_rejected_count = count + 1;
}
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-15-2024 05:51 AM
You can DM me, if you need any help related with development.