Hi @sanjana12,
Yes, that’s correct — when you declare a workflow instance variable, its value appears in the Variables tab because it's stored as part of the workflow's runtime state.
This allows for a few key benefits:
The variable retains its value across activities, even if the workflow is paused or restarted.
You can inspect the variable values at any point in the workflow to better understand the data flow.
Variables can be used and updated across activities to influence how the workflow behaves in later steps.
- You can also define variables manually in the Properties > Variables tab and use them just like instance variables within the workflow logic.
It’s a simple way to share and manage data across the entire workflow without needing to pass it explicitly between each activity.
Hope this helps.
Thanks,