Passing datetime parameter to microflow

1
Hi all. I'm working on a report that filters data by time period. I used datepicker to get start date and end date, but I can't pass datepicker's data into microflow. How can i get the datetime data to make data filter using microflow.
asked
1 answers
5

Instead of passing the dates directly, use the object (Report_DetailScheduleSalesman) as your microflow parameter. Then, in your microflow actions, you can simply use the two datetime attributes ($Report_DetailScheduleSalesman/From and $Report_DetailScheduleSalesman/To).

answered