- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2024 10:44 PM
Hi Team,
I have a sub-flow 'XYZ' and would like to backtrace from all places it is invoked from.
Whether Subflow can be triggered from any other place apart from flows? how to know what all flows the subflow is invoked from?
Regards
Vijay
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 11:31 AM
sys_hub_sub_flow_instance has what you are looking for. Flow column has the flow, subflow column has the subflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 07:32 AM
Check the sys_flow_context table, you could query for that subflow name, and then in the Source Record column it should be the flow that triggered it. You could use that column to determine the flows that have called that subflow. Or the record (if you call a subflow by script).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 08:38 AM
Thanks for the response.
I see this table holds the transaction details of the flow/subflow.
I would like to know the list of flows where the subflow 'XYZ' is invoked from.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 11:31 AM
sys_hub_sub_flow_instance has what you are looking for. Flow column has the flow, subflow column has the subflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 05:17 PM
Thanks for providing the solution.