The Zurich release has arrived! Interested in new features and functionalities? Click here for more

Where are the details of Flow Actions stored?

gjz
Mega Sage

Does anyone know what table holds the details of actions in a flow?  There are times I am looking for an example of something that was done in an action and I'm looking for a way to search instead of opening each action and seeing what is inside.  I used to be able to do this with workflow.

 

For example, I remember writing an action with a script that does something complex, but I don't remember which action it is in.  With workflow, I would open the table that held the workflow script and would search on the script field to find what I'm looking for.  How can I do that with flow actions?  What table holds that information?  We have over 1000 actions, opening each one is not really an option.

11 REPLIES 11

@gjz I have been trying to search this from quite some time whenever i get time.

 

I haven’t find the solution yet.

 

I did reach to sys_hub_step_instance table but that isn’t helpful.

 


Raghav
MVP 2023
LinkedIn

@gjz Try navigating to [sys_update_xml] table and in the payload search for a piece of your code (e.g. unique function)

 

This table stores all the custom updates, so perhaps use sys_update_xml.filter

GlideFather_0-1758563309153.png

 

 

It will give you chance to load the table with no records, you set your filter conditions and then you apply the query, that shall be faster to load it...

 

You can use function name or something that you know it's unique, not optimal to use "contains new GldieRecord" 😄

GlideFather_1-1758563414730.png

 

———
/* If my response wasn’t a total disaster ↙️ drop a Kudos or Accept as Solution ↘️ Cheers! */