- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2020 06:01 AM
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?
Solved! Go to Solution.
- Labels:
-
flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-12-2020 01:11 AM
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.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2020 08:04 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2020 12:14 PM
Hi

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2020 12:41 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2020 12:43 AM
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.