Hi,
In my requirement i need to delete the option field which has the value NE.
this is my coding.
select-options : mappe for apqi-groupid default '*' option CP.
select * from apqi
into corresponding fields of table t_final
where groupid in mappe
and credate in r_dat.
loop at t_final into w_final.
if w_final-groupid = mappe-low.
delete t_final index sy-tabix.
endif.
endloop.
In this process , inside the select-option mappe(default *) range i need to delete the option field which has the value NE.
Kindly help me to over come this issue.