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: 

table contents

Former Member
0 Kudos

is it possible to extract table contents for table belonging in another client from a different client

6 REPLIES 6

Former Member
0 Kudos

Yes. Use the client specified addition with the select statement and specify the client in the where condition.

SELECT * FROM vbak
INTO TABLE IT_VBAK
CLIENT SPECIFIED
WHERE MANDT EQ 'XXX'.

Former Member
0 Kudos

If your client is on a different system you can use the function module RFC_READ_TABLE.

Regards,

Nick

Former Member
0 Kudos

hi

if your table has mandt field(client specific) then it can be accessed by another client

reward if useful.

Former Member
0 Kudos

Hi,

I think you can try with the standard program RSAVGL00.

Hope it is sueful.

Thanks,

Sandeep.

0 Kudos

There is also transaction SCMP, which is useful for finding diffferences between Config Tables in different systems.

Former Member
0 Kudos

U can not access client dependent data without using RFC FMs..

U can create ur function module to read data from other client.

U need to create a RFC destination for target client..

and make FM RFC enabled.

When u call that FM... specify destination as RFC Destination name..

Reward if useful

regards

Prax