Where is the runtime value information in Flow Execution Details stored? How to adjust these values?

nt6
Kilo Expert

Can anyone tell me where the runtime value(s) which are shown in the flow context are being stored? or calculated?

I have a Logic Step which is waiting for a specific date/time to be reached but I'd like to change this value in order to speed up the process, How can this be done?

find_real_file.png

1 ACCEPTED SOLUTION

nt6
Kilo Expert

Case opened and closed .. it seems not possible to do any changes to the run-time value which is trigger from request catalog, SN didn't provide me where this information are stored either. Suggestion from SN is to try preventing any foreseeable scenarios and create flow steps according to it .. if else and so on.

View solution in original post

7 REPLIES 7

sachin_namjoshi
Kilo Patron
Kilo Patron

Runtime values are stored in sys_flow_runtime_value table.

You can run background script to update values in sys_flow_runtime_value table records.

 

Regards,

Sachin

Hi @sachin.namjoshi thanks! I was looking into this table is empty. Any tips? I was also looking BR which could prevent me from seeing records but there's no such BR neither.

You can also check below. You will get run time values in sys_hub_action_instance table also.

 

1.The configuration of the input and output variables are stored in sys_hub_step_instance table (make sure Inputs and Outputs fields are added in form layout)
2. The actual value of the input and output variables is stored in sys_hub_action_instance table (make sure Inputs and Action type.Outputs / Action type parent.Outputs / Compiled snapshot.Outputs fields are added in the form layout)
3. The rest of the Flow Designer tables can be found here: https://<instance_name>.service-now.com/sys_db_object_list.do?sysparm_query=sys_update_nameISNOTEMPTY%5EnameSTARTSWITHsys_hub

 

Regards,

Sachin

Thanks for the tip, although I still couldn't find anything, found many tables but they are more on the configuration rather run-time side.