- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 04:59 AM
Hi Team,
I have BR to populate approvers on custom field, want to make custom field empty once all the approvals are approved. Please help
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 05:50 AM
@Ash41 , seems a duplicate of thread which had a similar ask and was answered already. Check for my comments in the thread.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 05:07 AM
Could you please brief your requirement?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 05:10 AM
I have custom field where I populate all appovers users in it on RITM table, from approver table. Once the level approvals are approved, I want to set custom field empty.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 05:25 AM
I think you can use the same BR for both the case
Add conditions like this:
1) u_approvers is empty & approval IS "requested".
OR
2) u_approver is not Empty & approval IS "approved"
and in the Business rule you can add check like this:
if(current.u_approvers == "" && current.approval == "requested" ){
//same logic which we worked
}else{
current.u_approvers == ""
}
Please let me know for question/concerns
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 05:48 AM
If your BR on the RITM table then you can try with below script as well: