Update head value with updated list

0
Hi, At first there is a list and take head value then did some logic and now i have updated list. Again need to pass the updated list to the same head value and this should loop in microflow logic.
asked
1 answers
0

Hi jayasree,

                   Start with your original list (say $List).

Add a Loop activity:

Iterator: $HeadIterator

List: $List

Inside the loop:

Do your logic on $Iterator.

Update the object (Commit if needed).

(Optional) If your logic modifies the list dynamically and you want to process the updated version each time —→ instead of a loop, use a While structure as explained next.

answered