Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2024 12:51 AM
I have tested it again:
RITM OOB field:
Business Rule:
(function executeRule(current, previous /*null when async*/ ) {
// Add your code here
var ReturnDate = new GlideDateTime(current.variables.u_return_date);
ReturnDate.addDays(5);
current.follow_up = ReturnDate;
})(current, previous);
----------------------------------------------------------------
Mark this as Helpful / Accept the Solution if this helps.
Mark this as Helpful / Accept the Solution if this helps.