The CreatorCon Call for Content is officially open! Get started here.

Custom Field (Flagged ) must be set to true

Hitesh Ramba
Tera Contributor

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.

1 ACCEPTED SOLUTION

@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.

View solution in original post

8 REPLIES 8

Sandeep Rajput
Tera Patron
Tera Patron

@Hitesh Ramba  Please create an onBefore Update business rule on incident table as follows.

 

Screenshot 2024-03-28 at 1.15.37 PM.pngScreenshot 2024-03-28 at 1.16.41 PM.png

Instead of active, you need to set the value of your custom field to true.

 

Hope this helps.

Thank You for the Solution , how  can  i configure through scripting. 

 

@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.

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