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 02:50 AM
Hello @kali
You need to use Flow Logic in your flow designer, it will act as a Condition, in which you can give Particular date in if statement, and add your action in then.
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 03:06 AM
Hello @kali ,
you can either use trigger conditions for flow using below options
OR
you can use a flow logic and use a IF action and check on the date field condition via script
Hope this helps
Mark my answer correct if this helps you
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2023 03:25 AM
Hi Mohith,
Explain more on the date field condition via scrip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2023 03:36 AM
Hello @kali
var particularDate = new GlideDate("2023-08-15");
var dateF = fd_data_trigger.current.date_field;
if(dateF == particularDate){
return true;
}
Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.
Regards,
Samaksh