calculate field check box
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2024 07:16 PM
on selecting a field on a form I am not able to check the value of the calculated field to true and am not able to write a script also
any solution help and give suggestion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 02:33 AM
Hello @Anjali yadav1
try to use below script to update and script logic should be
var grTable = new GlideRecord("incident");
grTable.addQuery('sys_id',"sysID of the record");
grTable.query();
if(grTable.next()){
grTable.setValue('field backend name ',true)// i believe this field is boolean
grTable.update();
}
runs this background script.
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Thank You