‎2010 Nov 25 12:06 PM
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
‎2010 Nov 25 3:50 PM
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'