- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2023 12:00 PM
Requirement: To empty the Estimated Travel Duration (u_estimated_travel_duration) once a Business Rule is run. (screenshot below)
The field type is 'Duration'.
I have tried to update the field by using current.u_estimated_travel_duration = "" but that did not work.
Can someone please help me?
Thanks & Regards
Mayank Das
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2023 12:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2023 12:19 PM
I have used this:
current.u_estimated_travel_duration.setValue(0);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2023 01:01 PM
Thanks @Brad Bowman ! The solution that you provided worked.
I tried to use setValue('0') which did not work but I guess I know where I went wrong.
Thank you so much for your help... I appreciate it a lot!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2023 01:07 PM
You are welcome!