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: 

SAP System Table

Former Member
0 Kudos
130

Hai Friends

Could you please tell me any standard table is available to get total No of entries in different table

1 ACCEPTED SOLUTION

GauthamV
Active Contributor
0 Kudos
101

Why cant you use FM RFC_GET_TABLE_ENTRIES ?

You have asked similar question earlier today as well.

5 REPLIES 5

GauthamV
Active Contributor
0 Kudos
102

Why cant you use FM RFC_GET_TABLE_ENTRIES ?

You have asked similar question earlier today as well.

Former Member
0 Kudos
101

Am asking about the particular tables , so that i can use client-specific keywords in my program na ? , with out using RFC , Is it possible ?

Sandeep_Kumar
Product and Topic Expert
Product and Topic Expert
0 Kudos
101

You can simply call the FM mentioned above by passing destination as 'NONE' , this will execute the FM in the same system

Former Member
0 Kudos
101

SELECT COUNT(*) INTO NO2 FROM (itAB-tabname) CLIENT SPECIFIED WHERE MANDT = '400' .

Former Member
0 Kudos
101

answered