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
Troy LarrsenTroy Larrsen 

The record couldn’t be saved because it failed to trigger a flow.

I'm trying to complete the trailhead challenge for Automating Process with the Lightning Process Builder and keep getting this error:
The record couldn’t be saved because it failed to trigger a flow. 
A flow trigger failed to execute the flow with version ID 30161000000CcPC.

I don't have any accounts in my setup, is that the problem?  Do I need to prepopulate the data before configuring the Process Flow?

My Process is doing this:

Object: Account -> Start the process when a record is created or edited -> Recursion is enabled

Criteria for Executing Actions: Conditions are met -> (5 conditions) [Account].billingData[city,province,country,zip,street] _ Is changed _ boolean _ false

Actions: [Account].ChildAccounts _ No Criteria _ (5 conditions) billingData[city,province,country,zip,street] _ Reference _ (5 conditions) [Account].billingData[city,province,country,zip,street]

BharathimohanBharathimohan
Hi Troy,

Can you add another condition to start the process only when a record is updated and not when a record is created. This make sense because, you have the filter condition as ISCHANGED for all of those 5 fields.

- Select "Formula evaluates to true"
- Something like this,
 AND
(
NOT(ISNEW()),
OR(......ISCHANGED of fields .....)
)

Please give a try.

Regards,
Bharathimohan Ramaurthy
Salesforce For All (http://salesforceforall.blogspot.com/)
 
BharathimohanBharathimohan
Also create test data in the system