function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jordan HunterJordan Hunter 

Process to run without trigger

I need a process to run each morning to update another field based on the date (basically make it true if the date = TODAY.

But the process builder requires a record to be either edited or created. 

Does anyone know a way around this?
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Jordan.

In this scenerio you have to use scheduled triggered flow and write the logic in the flow .

https://help.salesforce.com/s/articleView?id=sf.flow_concepts_trigger_schedule.htm&type=5 (https://help.salesforce.com/s/articleView?id=sf.flow_concepts_trigger_schedule.htm&type=5)
If you wish to go with Coding you have to write batch class and schedule it daily.

Let me know if you face any issues.

If this solution helps, Please mark it as best answer.

Thanks,