Moderator message: in future please use a meaningful subject for your questions
Dear All,
I need to add search help to this code
tables : t247.
DATA: BEGIN OF wa,
spras TYPE t247-spras,
mnr TYPE t247-mnr,
ktx TYPE t247-ktx,
ltx TYPE t247-ltx,
END OF wa,
it like table of wa.
select-options s_mon for wa-mnr.
select spras mnr ktx ltx into table it from t247 where spras EQ 'EN' and mnr in s_mon.
loop at it into wa.
write : / wa-ktx,
wa-ltx.
endloop.
can some one explain with example...
Thanks,
Thiru. R
Edited by: Matt on Nov 28, 2008 4:21 PM