RPCCSBK2 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 RPCCSBK2 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: Canada Savings Bonds Temse report
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RP_TS_CREATE_OBJECT CALL FUNCTION 'RP_TS_CREATE_OBJECT' EXPORTING OBJKN = TEMP_OBJKN OBJNR = REM_TS OBJIN = TSHEADER EMPFG = 'RPCCSBK0' IMPORTING OBJHD = REM_FBHANDLE_1 TSOBJ = REM_TSOBJ_1 EXCEPTIONS FB_CALL_HANDLE = 1 FB_ERROR = 2 FB_RSTS_NOCONV = 3 FB_RSTS_OTHER = 4 NO_OBJECT = 5 NO_PERMISSION = 6.
RSTS_WRITE CALL FUNCTION 'RSTS_WRITE' EXPORTING FBHANDLE = REM_FBHANDLE_1 TABLES DATATAB = PC_TABLE EXCEPTIONS FB_CALL_HANDLE = 1 FB_ERROR = 2 FB_RSTS_NOCONV = 3 FB_RSTS_OTHER = 4.
RSTS_CLOSE CALL FUNCTION 'RSTS_CLOSE' EXPORTING FBHANDLE = REM_FBHANDLE_1 EXCEPTIONS FB_CALL_HANDLE = 1 FB_ERROR = 2 FB_RSTS_OTHER = 3.
RP_TS_OPEN CALL FUNCTION 'RP_TS_OPEN' EXPORTING TSOBJ = P_TEMSE EMPFG = 'RPCCSBK0' IMPORTING OBJIN = TSHEADER EXCEPTIONS FB_CALL_HANDLE = 1 FB_ERROR = 2 FB_RSTS_NOCONV = 3 FB_RSTS_OTHER = 4 NO_OBJECT = 5 NO_PERMISSION = 6 NO_HR_APPLICATION_FILE = 7 INVALID_VERSION_NUMBER = 8 WRONG_REPORT = 9 OTHERS = 10.
RSTS_READ CALL FUNCTION 'RSTS_READ' EXPORTING MAXIX = 0 TABLES DATATAB = PC_TABLE EXCEPTIONS FB_CALL_HANDLE = 1 FB_ERROR = 2 FB_RSTS_NOCONV = 3 FB_RSTS_OTHER = 4 OTHERS = 5.
RSTS_CLOSE CALL FUNCTION 'RSTS_CLOSE' EXCEPTIONS FB_CALL_HANDLE = 1 FB_ERROR = 2 FB_RSTS_OTHER = 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.