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: 

Reading "inactive tables" with TABLE_ENTRIES_GET_VIA_RFC

Former Member
0 Kudos

I am putting together a little browsing program to examine data in SAP BW tables. In the SAP GUI I can use transaction S16 and S17 to examine the tables, but when I try to browse exactly the same tables using ABAP module "TABLE_ENTRIES_GET_VIA_RFC" to read the data into Excel it throws an "inactive table" exception.

Is there some parameter that would allow "TABLE_ENTRIES_GET_VIA_RFC" to read "inactive tabels" or is this just not possible?

2 REPLIES 2

Former Member
0 Kudos

Hi Craig,

with this function as it is, you can't do it, because within the function NAMETAB_GET is calles and this checks for acitve/not active and raises the exception.

Cheers,

Stefan

0 Kudos

Thanks.