Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Display/Maintenance Allowed flag

Former Member
0 Likes
1,691

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
925

Refer table DD02L - MAINFLAG field

2 REPLIES 2
Read only

Former Member
0 Likes
926

Refer table DD02L - MAINFLAG field

Read only

former_member188827
Active Contributor
0 Likes
925

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