- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-22-2019 11:54 PM
Solved! Go to Solution.
- Labels:
-
flow designer
-
Multiple Versions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-09-2020 12:46 PM
I should have posted this earlier, but I worked out how to determine if the step is using a MID. It's captured in the sys_variable_value table via the following query:
var grVarValue1 = new GlideRecord('sys_variable_value');
grVarValue1.addQuery('document', 'sys_hub_step_instance');
grVarValue1.addQuery('document_key', [step instance sys_id]);
grVarValue1.addEncodedQuery('variable.element=use_mid');
grVarValue1.addQuery('value', '1');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-23-2019 01:27 AM
Hi
As the picture shows the connection details, I gues you are meaning the field on the table [sys_connection] whis NO specific FLOW DESIGNNE Table. You just USE an existing Connection Record.
So, for your case, can you have a look a that table, and let me know.
If that answers your question, please mark my answer as correct and helpful.
BR
Dirk

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-23-2019 01:31 AM
Hi
I just cross checked with the Dictionary (see screenshot below).
There are just a few entries of type "True/False", which relates to "*MID".
Maybe that value is stored in one of the variable entries (see screenshot):
Let me know, if that answers your question and mark my answer as correct and helpful, please.
BR
Dirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-25-2019 06:37 PM
Thanks for the reply Dirk! I checked the sys_connection table but unfortunately it is completely empty...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-09-2020 07:35 AM
Hi Simeon,
I know it is a bit late for the answer but I will write it anyway for future searches:
The information you are looking for is stored in the table: sys_hub_step_instance.
In order to find the right step, you have to sort it by creation date, because all different versions are stored in that table without version info. And also filter for step_type=REST.
And then don't click on the first column to open the action, but instead click on the little icon to preview the record. This will let you open the action step instead of the action.
BR
Cornelius