You need to sign in to do that
Don't have an account?

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
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
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.
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:
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