Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2026 07:30 PM
Hi @manale460681490
Try the below approach. It's working as expected.
Action:
Script:
var hours = parseInt(fd_data.action_inputs.hours,10);
if (isNaN(hours) || hours <= 0){
hours =24;
}
return "sys_updated_onRELATIVEGT@hour@ago@"+hours;
Regards,
Siva