RKOBSHOW 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 RKOBSHOW 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: KOKRS = D Controlling area
Title: Number of CO Objects in Controlling Area
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
OBJECT_TYPES_GET CALL FUNCTION 'OBJECT_TYPES_GET' TABLES t_obart = lt_obart.
CONVERSION_EXIT_OBART_OUTPUT CALL FUNCTION 'CONVERSION_EXIT_OBART_OUTPUT' EXPORTING input = lt_obart IMPORTING TXT60 = l_text.
CHECK_EXIST_LIMU_FUNC CALL FUNCTION 'CHECK_EXIST_LIMU_FUNC' EXPORTING NAME = LOC_FUNCTION_NAME AGGNAME = LOC_GROUP_NAME MTYPE = ' ' IMPORTING EXIST = LOC_FLG_FB_EXISTING EXCEPTIONS TR_INVALID_TYPE = 01.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = SY-MSGID MSGTY = SY-MSGTY MSGV1 = SY-MSGV1 MSGV2 = SY-MSGV2 MSGV3 = SY-MSGV3 MSGV4 = SY-MSGV4 TXTNR = OBJECTS-MSGNO IMPORTING ACT_SEVERITY = SY-STEPL MAX_SEVERITY = SY-LOOPC EXCEPTIONS MESSAGE_TYPE_NOT_VALID NOT_ACTIVE .
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = object_text i_output_immediately = 'X' IMPORTING e_progress_sent = l_sent.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING TABLE = I_TAB FIELDNAME = I_FIELD TEXT_FLAG = 'X' IMPORTING FIELD_ATTR = E_DFIES EXCEPTIONS NOT_FOUND = 1.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' IMPORTING CORRECTIONS_WANTED = SY-TFILL EXCEPTIONS INCONSISTENT_RANGE = 1 NO_MESSAGES = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RKOBSHOW - Number of CO Objects in Controlling Area RKOBSHOW - Number of CO Objects in Controlling Area RKOBINPT - Example: Creating an Internal Order using Batch Input RKOBINPT - Example: Creating an Internal Order using Batch Input RKOBCL03 - Line Items for Results Analysis RKOBCL03 - Line Items for Results Analysis