RAIDKR_FORMS_5 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 RAIDKR_FORMS_5 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!
T093C_READ CALL FUNCTION 'T093C_READ' " Company codes FI-AA "RF-KR EXPORTING F_T093C = S_T093C * I_PBO_CHECK = ' ' IMPORTING F_T093C = S_T093C EXCEPTIONS NOT_FOUND = 1.
DATE_TO_PERIOD_CONVERT CALL FUNCTION 'DATE_TO_PERIOD_CONVERT' EXPORTING I_DATE = BERDATUM " YYYYMMDD I_MONMIT = S_T093C-MONMIT " 00 I_PERIV = S_T001-PERIV " K4 IMPORTING E_GJAHR = SAV_GJAHR. " YYYY
FIRST_DAY_IN_PERIOD_GET CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET' EXPORTING I_GJAHR = SAV_GJAHR I_PERIV = S_T001-PERIV I_POPER = CON_POPER I_MONMIT = S_T093C-MONMIT IMPORTING E_DATE = SAV_GJBEG.
LAST_DAY_IN_YEAR_GET CALL FUNCTION 'LAST_DAY_IN_YEAR_GET' EXPORTING I_DATE = BERDATUM I_PERIV = S_T001-PERIV IMPORTING E_DATE = SAV_GJEND.
T001_READ CALL FUNCTION 'T001_READ' EXPORTING BUKRS = BUKRS-LOW IMPORTING STRUCT = FORM_T001 EXCEPTIONS NO_ENTRY = 1 * OTHERS = 2 .
KR_GET_HEADQUARTER_BPLACE CALL FUNCTION 'KR_GET_HEADQUARTER_BPLACE' "RF-KR EXPORTING COMPANY = BUKRS-LOW IMPORTING BPLACE_DATA = HQ_BPLACE.
T093B_READ CALL FUNCTION 'T093B_READ' EXPORTING F_T093B = FO_T093B IMPORTING F_T093B = FO_T093B EXCEPTIONS NOT_FOUND = 1 * OTHERS = 2 .
TABW_READ CALL FUNCTION 'TABW_READ' EXPORTING * F_TABW = I_BWASL = ANEPV-BWASL IMPORTING F_TABW = S_TABW E_TABWG = S_TABWG EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
T009_READ CALL FUNCTION 'T009_READ' EXPORTING F_T009 = P_S_T009 IMPORTING F_T009 = P_S_T009 EXCEPTIONS NOT_FOUND = 1 OTHERS = 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.