Application Development 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: 

How to list tables

Former Member
0 Kudos

Hi everyone!

Is it possible to produce a list of database tables depending on search criteria?

For example, I need to list all database tables that have "Log data changes" in Technical Settings enabled.

Thanks a lot!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

You can get this information from SE16, for table DD09L where PROTOKOLL NE space (initial).

select tabname from DD09L into <internal table name> where PROTOKOLL NE space.

Regards

Vasu

4 REPLIES 4

Former Member
0 Kudos

You can get this information from SE16, for table DD09L where PROTOKOLL NE space (initial).

select tabname from DD09L into <internal table name> where PROTOKOLL NE space.

Regards

Vasu

0 Kudos

Thanks a lot everyone!

Former Member
0 Kudos

Hi,

Check tables DD09L,DD09C and AUTTABLOG

Regards,

Himanshu

former_member480923
Active Contributor
0 Kudos

Have a look at the Table DD09L where put Log = 'X' and it will produce your desired List.

Hope That Helps

Anirban M.