- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2024 12:35 AM
Whenever a caller updates the incident form short description , the custom field i created flagged must be checked true . What should i use to make this happen.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2024 01:03 AM
@Hitesh Ramba The business rule I shared checks if the short description field is updated and if the logged in user is the caller of the incident. This business rule will only trigger when both of these conditions are met otherwise it won't run.
You can test this by create this business rule and try updating the short description field when you are caller of the incident. Your custom field will get true in this case. If someone else will update the short description then the business rule will not run.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2024 12:48 AM
@Hitesh Ramba Please create an onBefore Update business rule on incident table as follows.
Instead of active, you need to set the value of your custom field to true.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2024 12:51 AM
Thank You for the Solution , how can i configure through scripting.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2024 12:53 AM
@Hitesh Ramba Scripting is not needed in this case, but still if you want you can simply write the following code.
current.u_custom_flag = 'true';
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2024 12:59 AM
Thanks for the reply , But the question is ...
1 .If a caller updates something on the field ,then flagged must be true...
So, i thought whenever short description changes ,it is somethng updated from caller.
Do u have anyother idea on solving point 1