- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2017 09:09 PM
Does anyone know how the due date is calculated on RITMs?
I'm in my totally vanilla personal developer Helsinki instance. Go to the catalog, pick Adobe, and click order now. A RITM is created with a due date of tomorrow's date. Looking at the catalog item, I see there's a delivery time set to 1 day. So I change it to 10 days. Order again. Due date still tomorrow. Checked the workflow, nothing is setting the due date there. Checked business rules. Nothing.
Anyone point me in the right direction?
Thanks!
Solved! Go to Solution.
- Labels:
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2017 10:10 PM
Hi Chris,
Thats my bad i didnot see whether it is inactive or active but i guess this post Delivery dates & estimated delivery dates in your service catalog will
certainly help you out.
Thanks & Regards,
Abhishek
Note : Please mark this response as correct and helpful via your post link (How is due_date determined on RITM? ) to help others with the same questio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2017 09:29 PM
Hi Chris ,
There is an OOB Business rule(Calculate Request Item Due Date) written on requested item table to calculate request item due date.
kindly have a look on the business rule.
Business rule : (Calculate Request Item Due Date)
- var daysStr = current.cat_item.delivery_time.getDisplayValue();
- var days = daysStr.split(' ')[0];
- gs.print("days = " + days);
- current.due_date.setValue(gs.daysAgo(-1 * days));
Thanks & Regards,
Abhishek
Note : Please mark this response as correct and helpful via your post link (How is due_date determined on RITM? ) to help others with the same question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2017 09:57 PM
Thanks, but this BR is inactive OOB.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2017 10:10 PM
Hi Chris,
Thats my bad i didnot see whether it is inactive or active but i guess this post Delivery dates & estimated delivery dates in your service catalog will
certainly help you out.
Thanks & Regards,
Abhishek
Note : Please mark this response as correct and helpful via your post link (How is due_date determined on RITM? ) to help others with the same questio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2017 11:24 AM
Thank you Abhishek! This looks to be it.