Kindly help me in understanding that all the data which is created under sequence/activity..(eg- temp variable,data tables etc)...where is all that saved? how can we delete it?

kindly help me in understanding that all the data which is created under sequence/activity…(eg- temp variable,data tables etc)…where is all that saved? how can we delete it ?

Hi,

When you create a new process a “.xaml” file is created, in that only all the activities are stored and if delete the xaml files all the activities are deleted.

Hi,

just to add to what @anil5 mentioned, The .xaml file actually holds the variables that are created in the activities in the file itself. Additionally, all the variables that we create have a scope. Scope in there sense, To what activities it is visible, and to what level it is not.

So lets imagine you have a flowchart activity at the very top, and you have a another sequence activity within it. And you create a variable in the sequence activity. If you check the scope, you can set the scope of the variable to show only in the sequence, or for the flowchart.
If you select sequence for that, the variable will not be visible for the flowchart. If you select flowchart, the variable is visible for both of them. Get the idea?

Also, as Anil mentioned, all these variables only belong to that specific xaml file. If you remove a file, all the activities in it will be deleted along with their respective variables…

These variables can be anything… String, Int, datatables, lists, arrays… etc.

Does it help

1 Like