You need to sign in to do that
Don't have an account?
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]
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/)