Hi Chris, is it possible to create a flow that execute a apex class at the last day of the month at 23:59?It would be cool to print a visualforce with the data of the current month 🙂✌🏻 keep up your great work
Hello Jonbo, As far as I know, Schedule-Trigger Flows currently only allow a frequency of Once, Daily, or Weekly. They don't support Monthly. You could instead create an apex class that implements the Schedulable interface and have it execute at your preferred time and include the logic to do something with a visualforce page. You can either schedule the class to run via the Schedule Apex UI or through a CRON Expression using the Execute Anonymous Window in the Dev Console. trailhead.salesforce.com/content/learn/modules/asynchronous_apex/async_apex_scheduled
Hi Chris, is it possible to create a flow that execute a apex class at the last day of the month at 23:59?It would be cool to print a visualforce with the data of the current month 🙂✌🏻 keep up your great work
Hello Jonbo,
As far as I know, Schedule-Trigger Flows currently only allow a frequency of Once, Daily, or Weekly. They don't support Monthly. You could instead create an apex class that implements the Schedulable interface and have it execute at your preferred time and include the logic to do something with a visualforce page. You can either schedule the class to run via the Schedule Apex UI or through a CRON Expression using the Execute Anonymous Window in the Dev Console.
trailhead.salesforce.com/content/learn/modules/asynchronous_apex/async_apex_scheduled