Hi gurus,
how do i open a collection based on condition.
something like(assume i have a l_tab nested table with attributes)
{code}
for i in l_tab.first.. l_tab.last loop
{
if l_tab.ind(i)='P' then
--------
l_tab(i).id='1';
}
{code}
i do not want to loop through entire collection, instead i want loop through records with ind='P' and update the same collection.