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

ABAP code to connect 2 systems.

PankajVPatil
Participant
0 Likes
377

Hi,

My requirement is such that I need to read the data from a cube of one BI system and write it into the cube of another BI system.

I am able to read the cube data through "RSDRI_INFOPROV_READ" function module.

2 questions:

1) Is the above solution possible?

2) Is there ABAP code to connect 2 systems?

Please help with some suggestions.

Thanks,

Pankaj

1 REPLY 1
Read only

Former Member
0 Likes
321

You can call function modules in other systems using RFC - so you probably need to create a RFC wrapper function module for your 'RSDRI_INFOPROV_READ'. Then you can create/look up a RFC destination for the other system using SM59.

All you have to do to call a RFC function in another system, is to add the destination to the function call (if the destination is setup up right):


CALL FUNCTION 'ZRSDRI_INFOPROV_READ'
   DESTINATION 'DEST_NAME'