setting value using dotwalking

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 06:19 AM
Hi Team,
I have written a before BR script to set boolean value but its not setting it,but on checking the logs , it does show the value is set however when we open the record, we do not see the value.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 07:15 AM
Its still not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 07:17 AM
Hi @Community Alums ,
Are the logs getting printed?
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 07:40 AM - edited 11-13-2023 07:41 AM
Hi @Community Alums
As you're using dot-walking to set the field value: exp.order.u_expedite
GlideRecord will only update the record on the table you are querying for GlideRecord. It will not update the reference field table records.
Run the GlideRecord on the table where the Order field exists and use the update() method if the table where the order field exists and your BR is on a different table.
Try to set the value with the quotation as:
exp.order.u_expedite = 'true';
Thanks!
Mark it as correct and helpful if it works✔️👍

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 07:43 AM
HI All,
This is now resolved after writing the logic in a Flow.
Thanks for your support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 07:45 AM
@Community Alums
Mark the answer as correct and helpful whatever worked for you so that others can get help from it.
Regards,
Shubham