Variable is not created

0
In my application i have a loop, where i am creating a variable to store some string values. but when running the application, the variable is never used. After debugging and checking, the variable at all.    Here's the pic for the flow, Any idea to solve this issue would be helpful.   Thank you.
asked
2 answers
1

In addition to the above, do realize that a variable created inside a loop will not be available outside the loop. So if your debugger is paused somewhere outside of the loop, you won't see your variable.

answered
0

Hello Abdur,

 

Can you check while you are debugging if your list has objects.

It can be that your retrieve is not good or that you give an empty list to your loop.

Other things can be security measures that are too strict.

 

Hope this helps,

 

Good luck!

answered