Flow designer

kali
Tera Contributor

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

9 REPLIES 9

Hi Samaksh,

The date field is dynamic , so it is possible to run a script based on the dynamic date?

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

 

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

Hello @kali 

 

var particularDate = fd_data_trigger.current.system_created_on;
var dateF = fd_data_trigger.current.date_field;
if(dateF == particularDate){
return true;
}

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