‎2007 Sep 04 7:06 AM
Hi,
I want to find all <b>tables</b> for which <b>Display/Maintenance flag</b> under "Delivery and maintenance" tab is marked X.
Can anybody tell me how to find this?
Thanks in advance.
Shital
‎2007 Sep 04 7:11 AM
‎2007 Sep 04 7:11 AM
‎2007 Sep 04 7:13 AM
types:begin of it,
mainflag type c,
end of it.
data itab type table of it with header line.
select tabname from dd02l into itab-tabname where mainflag = 'X'.
append itab.
endselect.
loop at itab.
write:/ itab-tabname.
endloop.
plz reward points if dis helps
Message was edited by:
abapuser