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

ABAP : DDIC

Former Member
0 Likes
712

Hi,

I would like to know if there is any system table which stores the transparent table name and the no. of entries present in it. I basically want to list the large volume tables for performance related issues.

4 REPLIES 4
Read only

Former Member
0 Likes
688

hey,

you can get all the table names from the table :DD02L

then one by one pass the table names in the function module TABLECOUNT which will return you the number of entries in that table

rest all processing you can do according to your requirement

Read only

0 Likes
688

i dnt think so there is any database table that has the name as well the number of entries of table.

you have to write a simple abap code for that and your query is solved.

hope it will help

Read only

Former Member
0 Likes
688

Hi,

DD02L gives the list of all tables.

Fm Table count returns the no. Of records In a Table.

Regards

Sandipan

Read only

Former Member
0 Likes
688

DD02L is the table name.

The function module TABLECOUNT has the no of entries in table.

If you want to know all the field in a table dd03l.

Thanks

Swarna