REPORT 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 REPORT 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: Program for Object Type REPORT_1 : Report Object
Text Symbol: 001 = Report list
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_VARIANT_EXISTS CALL FUNCTION 'RS_VARIANT_EXISTS' EXPORTING report = l_report variant = l_variant IMPORTING R_C = l_subrc EXCEPTIONS NOT_AUTHORIZED = 1 NO_REPORT = 2 REPORT_NOT_EXISTENT = 3 REPORT_NOT_SUPPLIED = 4 OTHERS = 5 .
F4_PROGRAM CALL FUNCTION 'F4_PROGRAM' EXPORTING OBJECT = '*' * SUPPRESS_SELECTION = * DISPLAY_ONLY = IMPORTING RESULT = RESULT EXCEPTIONS OTHERS = 1.
LIST_FROM_MEMORY CALL FUNCTION 'LIST_FROM_MEMORY' TABLES LISTOBJECT = LISTTAB EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
TABLE_COMPRESS CALL FUNCTION 'TABLE_COMPRESS' TABLES IN = LISTTAB OUT = LISTTAB_OUT EXCEPTIONS COMPRESS_ERROR = 1 OTHERS = 2.
SO_DOCUMENT_INSERT_API1 CALL FUNCTION 'SO_DOCUMENT_INSERT_API1' EXPORTING FOLDER_ID = FOLDER_ID DOCUMENT_DATA = DOC_DATA DOCUMENT_TYPE = 'ALI' IMPORTING DOCUMENT_INFO = DOC_INFO TABLES OBJECT_CONTENT = LISTTAB_OUT EXCEPTIONS FOLDER_NOT_EXIST = 1 DOCUMENT_TYPE_NOT_EXIST = 2 OPERATION_NO_AUTHORIZATION = 3 PARAMETER_ERROR = 4 X_ERROR = 5 ENQUEUE_ERROR = 6 OTHERS = 7.
SWF_GET_REPORT_PARAMETERS CALL FUNCTION 'SWF_GET_REPORT_PARAMETERS' EXPORTING REPORTNAME = OBJECT-KEY-REPORTNAME TABLES PARAMETER = T_PARAMETER CONTAINER = TMP_CONTAINER EXCEPTIONS REPORT_NOT_FOUND = 1 REPORT_NOT_TYPE_1 = 2 OTHERS = 3.
SWF_GET_REPORT_PARAMETERS CALL FUNCTION 'SWF_GET_REPORT_PARAMETERS' EXPORTING REPORTNAME = OBJECT-KEY-REPORTNAME TABLES PARAMETER = T_PARAMETER CONTAINER = TMP_CONTAINER EXCEPTIONS REPORT_NOT_FOUND = 1 REPORT_NOT_TYPE_1 = 2 OTHERS = 3.
SWF_GET_REPORT_PARAMETERS CALL FUNCTION 'SWF_GET_REPORT_PARAMETERS' EXPORTING REPORTNAME = OBJECT-KEY-REPORTNAME TABLES PARAMETER = T_PARAMETER[] CONTAINER = TMP_CONTAINER[] EXCEPTIONS OTHERS = 0.
LIST_FROM_MEMORY CALL FUNCTION 'LIST_FROM_MEMORY' TABLES LISTOBJECT = LISTTAB EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
TABLE_COMPRESS CALL FUNCTION 'TABLE_COMPRESS' TABLES IN = LISTTAB OUT = LISTTAB_OUT EXCEPTIONS OTHERS = 0.
SO_DOCUMENT_INSERT_API1 CALL FUNCTION 'SO_DOCUMENT_INSERT_API1' EXPORTING FOLDER_ID = FOLDER_ID DOCUMENT_DATA = DOC_DATA DOCUMENT_TYPE = 'ALI' IMPORTING DOCUMENT_INFO = DOC_INFO TABLES OBJECT_CONTENT = LISTTAB_OUT EXCEPTIONS FOLDER_NOT_EXIST = 1 DOCUMENT_TYPE_NOT_EXIST = 2 OPERATION_NO_AUTHORIZATION = 3 PARAMETER_ERROR = 4 X_ERROR = 5 ENQUEUE_ERROR = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
REPORT - Program for Object Type REPORT_1 : Report Object REPORT - Program for Object Type REPORT_1 : Report Object REPLSTOP - documentation and ABAP source code REPLICATE_FROZEN_OBJECTS - Replicate Information on Frozen Objects REPLICATE_FROZEN_OBJECTS - Replicate Information on Frozen Objects REPLICATE_EXCEPTIONS - Replicate Use Information