RKFP_FORMS 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 RKFP_FORMS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
K_KOKRS_SET CALL FUNCTION 'K_KOKRS_SET' IMPORTING E_KOKRS = LD_KOKRS.
K_KOKRS_READ CALL FUNCTION 'K_KOKRS_READ' EXPORTING KOKRS = LD_KOKRS IMPORTING E_TKA01 = LS_TKA01.
G_PERIOD_GET CALL FUNCTION 'G_PERIOD_GET' EXPORTING VARIANT = LS_TKA01-LMONA IMPORTING PERIOD = LD_PERIOD YEAR = LD_YEAR.
G_POSTING_DATE_OF_PERIOD_GET CALL FUNCTION 'G_POSTING_DATE_OF_PERIOD_GET' EXPORTING PERIOD = LD_PERIOD VARIANT = LS_TKA01-LMONA YEAR = LD_YEAR IMPORTING FROM_DATE = CR_DATE-LOW TO_DATE = CR_DATE-HIGH.
K_KOKRS_SET CALL FUNCTION 'K_KOKRS_SET' EXPORTING DISPLAY = space I_KOKRS = c_kokrs POPUP = ld_popup IMPORTING E_KOKRS = ld_kokrs E_ACTION = ld_action EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
K_KOKRS_SET * CALL FUNCTION 'K_KOKRS_SET' * EXPORTING * I_KOKRS = C_KOKRS * POPUP = LD_POPUP * IMPORTING * E_KOKRS = LD_KOKRS * E_ACTION = LD_ACTION * EXCEPTIONS * NOT_FOUND = 1 * OTHERS = 2.
K_KOKRS_SET * CALL FUNCTION 'K_KOKRS_SET' * EXPORTING * I_KOKRS = S_KOKRS * POPUP = '0'.
K_VERSN_VALUATION CALL FUNCTION 'K_VERSN_VALUATION' EXPORTING I_KOKRS = P_KOKRS TABLES T_TKA09_V = LT_TKA09 EXCEPTIONS NO_BASIC_VERSION = 1 WRONG_CUSTOMIZING = 2 VALUATION_PROFILE_NOT_ACTIVE = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.