Flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2023 02:48 AM
Hi All,
I have a date field , my ask is that my flow designer should run on the particular date field . Is there any actions for this? Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2023 05:22 AM
Hi Samaksh,
The date field is dynamic , so it is possible to run a script based on the dynamic date?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2023 05:26 AM
Hello @kali
Yes you can run a script and compare it to particular date.
Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2023 07:08 AM
Hi ,
I want to compare a date field by user (Dynamic date) and system date , if both the dates are same , then the hr case should be updated
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2023 07:24 AM
Hello @kali
var particularDate = fd_data_trigger.current.system_created_on;
var dateF = fd_data_trigger.current.date_field;
if(dateF == particularDate){
return true;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2023 08:24 AM
Hello @kali
If my response helps you in solving your query, plz mark it accept. it will help future users to reach the post.
Regards,
Samaksh