Guys while executing multiple files is there a way to make all the variables to default before the execution of the next file??
use assign variable and make it empty
or in variable pane keep the value null.
for every time you run fresh it reset the value to empty.
Its a variables scope thing so you can do like this
For each {
assign a =" “;
assign b=” ";
then your next file reading or your logic code. // you can also keep this in a sequence and use those vairable inside that sequance scope which is related with file execution
}
so every iteration it will assign those variables empty.
Regards…!!
Aksh
2 Likes