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

SAP System Table

Former Member
0 Likes
808

Hai Friends

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

1 ACCEPTED SOLUTION
Read only

GauthamV
Active Contributor
0 Likes
779

Why cant you use FM RFC_GET_TABLE_ENTRIES ?

You have asked similar question earlier today as well.

5 REPLIES 5
Read only

GauthamV
Active Contributor
0 Likes
780

Why cant you use FM RFC_GET_TABLE_ENTRIES ?

You have asked similar question earlier today as well.

Read only

Former Member
0 Likes
779

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 ?

Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
779

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

Read only

Former Member
0 Likes
779

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

Read only

Former Member
0 Likes
779

answered