You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/right-panel/execution-viewer.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,9 @@ It is important to note that the Execution Viewer can only display a JSON repres
36
36
37
37
### View Variables in Variables Viewer
38
38
39
-
To view the variables that have been assigned a value, including a NULL value, that are currently in scope, simply select the execution of interest and click on the Variables tab on the [Right Panel][].
39
+
To view the variables that have been assigned a value, including a NULL value, that are currently in [scope][Variable Scopes], simply select the execution of interest and click on the Variables tab on the [Right Panel][].
40
40
41
-
Variables that have not been assigned a value or are out of scope will not be displayed.
41
+
Variables that have not been assigned a value or are out of [scope][Variable Scopes] will not be displayed.
42
42
43
43
See the [Execution Viewer][Execution Viewer tutorial] tutorial for a step-by-step guide.
44
44
@@ -74,6 +74,7 @@ See the [Execution Viewer][Execution Viewer tutorial] tutorial for a step-by-ste
Copy file name to clipboardExpand all lines: content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/right-panel/settings-editor.md
+54Lines changed: 54 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,3 +4,57 @@ linkTitle: "Settings Editor"
4
4
description: "TODO"
5
5
weight: 40
6
6
---
7
+
8
+
# {{% param title %}}
9
+
10
+
## Summary
11
+
12
+
The Settings Editor enables the developer to set the values of the [input variables][Flow Input Variable] used when debugging a [flow][What is a Flow?].
Each Input variable corresponds to an Expression Editor in the Settings Editor, each of which MUST be set, otherwise an error will be raised by the parser when a flow is attempted to be debugged.
19
+
20
+
If an input variable has been assigned a default value, the value configured in Settings Editor will overwrite the value assigned to the respective input variable. If an input variable's default value is to be used, the default value must be copied into the relevant Expression Editor. Null and typed null values are allowed in the Settings Editor if required.
21
+
22
+
When the `Is Input Variable?` property is changed for a variable in the [Variables Grid][], the Settings Editor will show a warning message to update the input variables in the Settings Editor.
23
+
24
+
## Actions
25
+
26
+
### Make a variable an Input Variable
27
+
28
+
To make a variable an Input Variable, open the Variables Grid (Bottom Panel) by selecting on the Variables tab. Double-click on the Is Input Variable? field of the variable that is to be made an Input Variable, and tick the checkbox that appears in the field.
29
+
30
+
### Update Input Variables in Settings Editor
31
+
32
+
When a new Input Variable is defined, or an existing Input Variable removed, it is necessary to update the Input Variables in the Settings Editor. To do this, click on the Update Inputs button on the Settings Editor.
33
+
34
+
## Remarks
35
+
36
+
### Known Limitations
37
+
38
+
* A value must be entered for each Input variable even if that variable has a Default Value assigned.
0 commit comments