RKADSHOW 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 RKADSHOW 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: BELNR = Document number
Title: Display Interest Documents
Text Symbol: 000 = File Description
Text Symbol: 002 = Segment:
Text Symbol: 003 = Field name Field content
Text Symbol: 005 = No records exist
Text Symbol: 015 = Document number..........
Text Symbol: 016 = Object number............
Text Symbol: 017 = Fiscal year..............
Text Symbol: 018 = Period...................
Text Symbol: 019 = Object...................
INCLUDE RKACOPER.
INCLUDE RBONRART.
No SAP DATABASE tables are accessed within this REPORT code!
OBJECT_IDENTIFICATION_GET CALL FUNCTION 'OBJECT_IDENTIFICATION_GET' EXPORTING OBJNR = TZIN1-OBJNR TEXT_WANTED = 'X' IMPORTING E_TEXT = OTEXT IDENTIFICATION = IDENT.
AC_DOCUMENT_RECORD CALL FUNCTION 'AC_DOCUMENT_RECORD' EXPORTING I_AWTYP = 'AUAK' I_AWREF = AUAK-BELNR EXCEPTIONS NO_REFERENCE = 01 NO_DOCUMENT = 02.
NAMETAB_GET CALL FUNCTION 'NAMETAB_GET' EXPORTING TABNAME = TABNAME TABLES NAMETAB = NAMETAB.
K_TABLE_AUTHORITY CALL FUNCTION 'K_TABLE_AUTHORITY' EXPORTING I_TABNAME = TABLE.
K_TABLE_AUTHORITY CALL FUNCTION 'K_TABLE_AUTHORITY' EXPORTING I_TABNAME = TABLE.
DD_TBHD_GET CALL FUNCTION 'DD_TBHD_GET' EXPORTING TABL_NAME = DATEI WITHTEXT = 'X' IMPORTING DD02V_WA_A = DD02V.
DD_VIHD_GET CALL FUNCTION 'DD_VIHD_GET' EXPORTING VIEW_NAME = DATEI WITHTEXT = 'X' IMPORTING DD25V_WA_A = DD25V.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.