RKCDMSP0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program enables you to sort operating system files, print orders, or program outputs into the report portfolio...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RKCDMSP0 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: SPOOLN2 = Spool job number
Selection Text: SELSET = - Variant
Selection Text: REPREP = ABAP program
Selection Text: REPORT = Program
Selection Text: L_FILE = File
Selection Text: KURZTEXT = Short text
Selection Text: HICOL = Color
Selection Text: DESTINA = Destination
Selection Text: BERNAME = Report name
Selection Text: BERKLASS = Report class
Selection Text: BENUTGRP = User group
Title: Report portf.: Data transfer
Text Symbol: ZIL = Report portfolio ----------------------------------------------------------
Text Symbol: ODR = or
Text Symbol: HER = Origin --------------------------------------------------------------------
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BRIEFINGBOOK_T242E_SELECT CALL FUNCTION 'BRIEFINGBOOK_T242E_SELECT' EXPORTING SOURCE = SOURCE VARIANT = SELSET TABLES I_T242E = I_T242E EXCEPTIONS NO_ENTRY_FOUND = 01.
TEXT_TO_ITAB_READ CALL FUNCTION 'TEXT_TO_ITAB_READ' EXPORTING DESTINATION = DESTINA FILENAME = FILE ORIGIN = ORIGIN PROGRAM_NAME = HERKREPO SPOOLNUMBER = SPOOLN2 VARIANT = VARIANTE TABLES TEXT_TAB = TEXT_TAB.
ENQUEUE_EKCREPORT CALL FUNCTION 'ENQUEUE_EKCREPORT' EXPORTING APPLCLASS = 'KC' REPID = I_T242E-BRCHT SUBCLASS = '01' TABNAME = 'CFNNN' EXCEPTIONS FOREIGN_LOCK = 01 SYSTEM_FAILURE = 02.
BRIEFINGBOOK_INSERT CALL FUNCTION 'BRIEFINGBOOK_INSERT' EXPORTING APPLCLASS = 'KC' SOURCE = HERKREPO VARIANT = VARIANTE BI_SMODE = SMODE IMPORTING REPORT_NAME = T242E-BRCHT TABLES I_T242E = I_T242E TEXT_TAB = TEXT_TAB EXCEPTIONS D_NUMBRES_EXPIRED = 03 H_NUMBRES_EXPIRED = 08 NO_REPORT_INSERT = 11.
FILE_GET_NAME CALL FUNCTION 'FILE_GET_NAME' EXPORTING LOGICAL_FILENAME = L_FILE IMPORTING * FILE_FORMAT = I01 FILE_NAME = FILE EXCEPTIONS FILE_NOT_FOUND = 01.
RSTI_REPORT_ADD CALL FUNCTION 'RSTI_REPORT_ADD' EXPORTING E_FCCLS = '9' E_TOOL = BRI_CONST_REPORT E_REPORT = REPINTERFACE EXCEPTIONS FOREIGN_LOCK = 1 WRONG_FUNCTION_CALL = 2 OTHERS = 3.
RSTI_REPORT_CHECK CALL FUNCTION 'RSTI_REPORT_CHECK' EXPORTING E_FCCLS = '9' E_REPORT = REPINTERFACE IMPORTING IT_FCCLS = IT_FCCLS EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.