- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 07:45 PM
Hi All,
I have a requirement like, when we create a change request based on the type we need to set date and time on duration filed?
normal change = 4 days
expiated change = 24 hr
standard change = 12 hr
how can we set the date and time dynamically based on the change type.
I'm using before business rule
type: before
condition: state is of normal,expedite,standard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 10:39 PM - edited 10-10-2023 10:40 PM
Hi @pvv1045330
Can you simply try to set like below :
if(current.type=='normal'){
/*Days Hr:mm:ss - As we know 14 days for normal*/
var approvalDuration = "14 00:00:00";
current.u_minimum_lead_time=approvalDuration;
}
else if(current.type=='expedite'){
/* Days Hr:mm:ss - As we know 48 hrs will be converted into days automatically*/
var Duration = "00 48:00:00";
current.u_minimum_lead_time=Duration;
}
else if(current.type=='standard'){
var approval = "00 24:00:00";
current.u_minimum_lead_time=approval;
}
ServiceNow Developer
I know one thing, and that is that I know nothing.
- Socrates

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 08:22 PM
Hi @pvv1045330 here is the BR on change request table runs before insert
Script:
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 08:55 PM
Hi @Harish KM , Thanks for the replay.
Have tried with your script but no luck, it's haven't populated the value on field,
the value will be populated when state leaves to new

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 09:44 PM
Hi @pvv1045330 Sry i tot it is a date field. You can follow Ankur suggestion for duration field
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Tuesday - last edited Tuesday
Hi @Vishal Birajdar
I have the similar required but i have set the delivery date for a catalog item.
Can you please guide me over that.
Thanks,
Shivani