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,781

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
1,015

Refer table DD02L - MAINFLAG field

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

2 REPLIES 2
Read only

Former Member
0 Likes
1,016

Refer table DD02L - MAINFLAG field

Read only

former_member188827
Active Contributor
0 Likes
1,015

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