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
Satya Ranjan MohantySatya Ranjan Mohanty 

process bulider

Hi 

when i am changeing the parent opportunity in opportunity record i am geting error.
can any one can help me out to debug the error or someone else faced this type of issue

Error:-"The Record couldn't be saved because it failed to trigger a flow  A flow trigger failed  to excute the flow with version ID 3011B00000taq . Flow error message :<b> An unhandled Fault has occurred in this flow </b> <br> An unhandled fault has occurred while processing the flow .please contact your system adminstrator for more information "

Thanks in Advance
​satya
 
Davy HuijgensDavy Huijgens
Hi Satya,

One of the ways to find out which flow is causing the error is by following the next steps:

1. copy the id
2. login on workbench.developerforce.com
3. select metadata types and components
4. select flow 
5. hit expend all
6. search for your id

You have now identified the flow which is causing your error.
Alain CabonAlain Cabon
Hi,

There is an other alternative with the developer console directly.

The workbench is a tool not supported by Salesforce but it is widely used.

Query Editor in the developer console:

User-added image

User-added image

Requests: Tooling API

All the flows: 
select id, masterlabel,status,VersionNumber from flow order by masterlabel,versionnumber desc

One flow by ID:
select id, masterlabel,status,VersionNumber from flow where id = '3010Y000000LGfDQAW'

Regards
Alain