RAIDPT02_F_COM 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 RAIDPT02_F_COM 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!
CURRENCY_CODE_SAP_TO_ISO CALL FUNCTION 'CURRENCY_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = P_WAERS IMPORTING ISO_CODE = L_ISOCD.
DATE_TO_PERIOD_CONVERT CALL FUNCTION 'DATE_TO_PERIOD_CONVERT' EXPORTING I_DATE = p_afabg * I_MONMIT = 00 I_PERIV = gd_wa_t001-periv IMPORTING E_BUPER = wa_peraf-peraf_min * E_GJAHR = * EXCEPTIONS * INPUT_FALSE = 1 * T009_NOTFOUND = 2 * T009B_NOTFOUND = 3 * OTHERS = 4 .
GET_LAST_AFA_PER_TRANS CALL FUNCTION 'GET_LAST_AFA_PER_TRANS' EXPORTING iv_bzdat =
iv_bwasl = iv_bukrs = iv_afasl = IMPORTING ev_perafa = lv_perafa.
ROUND CALL FUNCTION 'ROUND' EXPORTING DECIMALS = 2 INPUT = LV_ATX1 SIGN = '-' IMPORTING OUTPUT = lv_realrate_round EXCEPTIONS INPUT_INVALID = 1 OVERFLOW = 2 TYPE_INVALID = 3 OTHERS = 4 .
T001_READ_FIAA CALL FUNCTION 'T001_READ_FIAA' CHANGING F_T001 = gd_wa_t001 * EXCEPTIONS * NOT_FOUND = 1 * OTHERS = 2 .
FIRST_AND_LAST_DAY_IN_YEAR_GET CALL FUNCTION 'FIRST_AND_LAST_DAY_IN_YEAR_GET' EXPORTING I_GJAHR = p_anofis I_PERIV = gd_wa_t001-periv IMPORTING E_FIRST_DAY = g_first_day E_LAST_DAY = g_last_day * EXCEPTIONS * INPUT_FALSE = 1 * T009_NOTFOUND = 2 * T009B_NOTFOUND = 3 * OTHERS = 4 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.