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.