Option to see all variables involved in a file

Existing logic in UiPath studio: Currently in UiPath studio we can only see what are the variables active in a selected scope. For example if we select a “For each row” activity, it will show only variables involved in that scope.

Snapshot of the variables section:

Proposed logic: There must an option in the studio which will help the user to see all the variables involved in the file regardless of the scope. It can be shown with the current columns (name, Variable type, scope, default) in the variables section.

How will it help?
This will help the user to see how many variables are involved and help the user to manage them easily.

You can still see them by going to the higher scope. :thinking:

There is no way of seeing both var1 and var2 in scenarios like this:

Main
	Sequence1
		Nested1
			variable var1
			...
		Nested2
			variable var2
			...
	Sequence2
		Nested3
			variable var1 <-- valid declaration
		Nested4
			variable var1 <-- also valid declaration, could be highly misleading
5 Likes