RSBDCIL3 is a standard ABAP INCLUDE 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 RSBDCIL3 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.
Title: Function to read a BI TemSe log (READ_BDC_LOG_PLAIN)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSTS_GET_ATTRIBUTES CALL FUNCTION 'RSTS_GET_ATTRIBUTES' EXPORTING AUTHORITY = ' ' CLIENT = LOG_CLIENT NAME = LOG_NAME IMPORTING CHARCO = CHARCP EXCEPTIONS FB_ERROR = 1 FB_RSTS_OTHER = 2 NO_OBJECT = 3 NO_PERMISSION = 4 OTHERS = 5.
RSTS_OPEN_RLC CALL FUNCTION 'RSTS_OPEN_RLC' EXPORTING NAME = LOG_NAME CLIENT = LOG_CLIENT AUTHORITY = 'BATCH' PROM = 'I' RECTYP = 'VNL----' CHARCO = CHARCP EXCEPTIONS FB_CALL_HANDLE = 4 FB_ERROR = 8 FB_RSTS_NOCONV = 12 FB_RSTS_OTHER = 16 NO_OBJECT = 20 OTHERS = 24.
RSTS_READ CALL FUNCTION 'RSTS_READ' TABLES DATATAB = LOG_TABLE EXCEPTIONS FB_CALL_HANDLE = 4 FB_ERROR = 8 FB_RSTS_NOCONV = 12 FB_RSTS_OTHER = 16 OTHERS = 16.
RSTS_CLOSE CALL FUNCTION 'RSTS_CLOSE' EXCEPTIONS OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.