RKPLNCZ1 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 RKPLNCZ1 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: CHNGONLY = Only display if relev. to CoCd
Selection Text: GJAHR = Fiscal Year
Selection Text: KOKRS = Controlling Area
Selection Text: LIST = List Output
Selection Text: RWIN = Integrated Planning
Selection Text: TEST_ON = Test Run
Selection Text: TOLERANZ = Tolerance
Selection Text: VERSN = Version
Title: Batch Run of Check Program RKPLNC01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
K_KOKRS_READ CALL FUNCTION 'K_KOKRS_READ' EXPORTING gjahr = gjahr kokrs = kokrs IMPORTING e_tka01 = ls_tka01 EXCEPTIONS OTHERS = 1.
K_VERSN_READ CALL FUNCTION 'K_VERSN_READ' EXPORTING i_gjahr = gjahr i_kokrs = kokrs i_versn = versn IMPORTING e_tka07 = ls_tka07 EXCEPTIONS OTHERS = 1.
G_PERIODS_OF_YEAR_GET CALL FUNCTION 'G_PERIODS_OF_YEAR_GET' EXPORTING variant = ls_tka01-lmona year = gjahr IMPORTING last_normal_period = b_per EXCEPTIONS OTHERS = 1.
LIST_FROM_MEMORY CALL FUNCTION 'LIST_FROM_MEMORY' TABLES listobject = listobject EXCEPTIONS OTHERS = 1.
WRITE_LIST CALL FUNCTION 'WRITE_LIST' TABLES listobject = listobject 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.