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: 

List of Tables whose enhancement category as unclassified

vijay_e
Explorer
0 Kudos

Is there a way to extract the list of custom tables where the enhancement category is maintained as 'Not Classified'.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Vijay,

You could write a select query on the database view DD02V where the fields TABNAME like 'Z%' (or 'Y%') and EXCLASS EQ 0.

Thanks,

Sai Kiran.

3 REPLIES 3

Former Member
0 Kudos

Hi Vijay,

You could write a select query on the database view DD02V where the fields TABNAME like 'Z%' (or 'Y%') and EXCLASS EQ 0.

Thanks,

Sai Kiran.

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

You can do that from table DD02L with filter EXCLASS = 0.

atul_mohanty
Active Contributor
0 Kudos

Hi

Retrieve TABNAME (table name) from table DD02L  where TABCLASS = TRANSP (transparent tables) EXCLASS (DD:  Ranking for include and subtype extension) = 0.

If you want Pool table and Cluster table  then add CLUSTER , POOL to the where clause for TABCLASS,