Duration Field in not showing data in list view
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2022 10:08 AM
Hi All,
When duration field has 00:00:00 value on form , why its is not showing this 00:00:00 in list view. Its doesn't show anything ?
Is that an expected view . If I want to go for reporting and check if that duration field has 00 data its doesn't show the result then.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2022 10:14 AM
Hello,
If you have cleared the values out manually then it will show empty on list view otherwise it will show 0 seconds.
Please mark answer correct/helpful based on Impact
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2022 10:25 AM
Hi Saurav ,
I am using the business rule to make it empty on closed complete :
var activity_processing_time2 = (current.u_activity_processing_time.getDisplayValue());
if(gs.nil(current.u_activity_processing_time))
current.u_activity_processing_time= new GlideDuration('0 00:00:00');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2022 10:33 AM
yes if you are making it empty then it will show as empty only on the list view.
Please mark answer correct/helpful based on Impact