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: 

Is there any system table available to check no. of entries in the table?.

Former Member
0 Kudos

Hi

Is there any system table available to check the no of entries in the table.

Note : the table may be whether SAP table or Z-table.(All tables)

Regards

Raja.

1 REPLY 1

Former Member
0 Kudos

Hi Raja,

I don't think so. Instead, try to perform


SELECT count(*) FROM dbtab.

...to get the number of records of the table dbtab.

I hope this helps. Kind regards,

Alvaro