REMOTE_INFOCUBE_READ_TEST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter REMOTE_INFOCUBE_READ_TEST into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: SLOGSYS = D Source system
Selection Text: INFOCUBE = D InfoCube
Title: remote_infocube_read_test
Text Symbol: 009 = Characteristics
Text Symbol: 010 = Selection
Text Symbol: 017 = Key figures
Text Symbol: 018 = Data
Text Symbol: 019 = Rows
Text Symbol: 020 = Expr
Text Symbol: 021 = InfoObject
Text Symbol: 008 = 8
Text Symbol: 001 = 1
Text Symbol: 002 = 2
Text Symbol: 003 = 3
Text Symbol: 004 = 4
Text Symbol: 005 = 5
Text Symbol: 006 = 6
Text Symbol: 007 = 7
Text Symbol: 022 = S
Text Symbol: 036 = Error in function module RSD_IOBJ_GET with Infoobject
Text Symbol: 037 = Incorrect characteristic data type:
Text Symbol: 038 = Runtime:
Text Symbol: 039 = Seconds
Text Symbol: 035 = Error in function module BAPI_INFOCUBE_READ_REMOTE_DATA
Text Symbol: 023 = Op.
Text Symbol: 024 = Low
Text Symbol: 025 = High
Text Symbol: 030 = Src. system
Text Symbol: 031 = InfoCube
Text Symbol: 033 = Return type:
Text Symbol: 034 = Return message:
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAPI_INFOCUBE_READ_REMOTE_DATA CALL FUNCTION 'BAPI_INFOCUBE_READ_REMOTE_DATA' DESTINATION SLOGSYS EXPORTING INFOCUBE = INFOCUBE IMPORTING RETURN = G_S_RETURN TABLES SELECTION = G_T_NSEL CHARACTERISTICS = G_T_CHARS KEYFIGURES = G_T_KEYFS DATA = G_T_DATA EXCEPTIONS COMMUNICATION_FAILURE = 1 MESSAGE G_MESSAGE SYSTEM_FAILURE = 2 MESSAGE G_MESSAGE OTHERS = 3.
RSD_IOBJ_GET CALL FUNCTION 'RSD_IOBJ_GET' EXPORTING I_IOBJNM = INFOOB IMPORTING E_S_VIOBJ = OUT EXCEPTIONS IOBJ_NOT_FOUND = 1 ILLEGAL_INPUT = 2 OTHERS = 3 .
RSD_IOBJ_GET CALL FUNCTION 'RSD_IOBJ_GET' EXPORTING I_IOBJNM = INFOOB IMPORTING E_S_VIOBJ = OUT EXCEPTIONS IOBJ_NOT_FOUND = 1 ILLEGAL_INPUT = 2 OTHERS = 3 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.