RAPOST_LOOP 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 RAPOST_LOOP 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!
LAST_DAY_IN_PERIOD_GET CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = p_gjahr i_periv = g_fi_periv " t001-periv " EhP6 i_poper = p_buper IMPORTING e_date = g_lastday.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' "> 1050833 EXPORTING name = icon_led_red text = text-012 info = text-012 IMPORTING RESULT = gd_icon_red. "> 1050833
T093A_READ CALL FUNCTION 'T093A_READ' EXPORTING f_t093a = t093a IMPORTING f_t093a = t093a.
MESSAGE_LINE_SET CALL FUNCTION 'MESSAGE_LINE_SET' EXPORTING zeile = ld_zeile.
MESSAGE_SET_DEFAULTLINE CALL FUNCTION 'MESSAGE_SET_DEFAULTLINE' EXPORTING arbgb = 'AAPO' msgty = 'E' msgv1 = afblnrc msgv2 = ld_from msgv3 = ld_to txtnr = '510' zeile = ld_zeile modify = ' ' EXCEPTIONS not_active = 1 OTHERS = 2.
APER_CREATE_AA_DOCUMENT CALL FUNCTION 'APER_CREATE_AA_DOCUMENT' EXPORTING is_rlambu = ls_rlambu is_acchd = ls_acchd id_buhbkt = x093-buhbkt TABLES it_anepi = lt_anepi et_accit = lt_accit et_acccr = lt_acccr et_accda = lt_accda EXCEPTIONS error_message = 3.
AMBU_INSERT_DEPR_LINES CALL FUNCTION 'AMBU_INSERT_DEPR_LINES' EXPORTING i_acchd = ls_acchd IMPORTING e_lines = ld_accit_lines TABLES t_accit = lt_accit t_acccr = lt_acccr t_accda = lt_accda.
MESSAGE_LINE_SET CALL FUNCTION 'MESSAGE_LINE_SET' EXPORTING zeile = ld_zeile.
MESSAGE_SET_DEFAULTLINE CALL FUNCTION 'MESSAGE_SET_DEFAULTLINE' EXPORTING arbgb = 'AAPO' msgty = 'E' txtnr = '513' zeile = ld_zeile modify = ' ' EXCEPTIONS not_active = 1 OTHERS = 2.
NUMBER_GET_INFO CALL FUNCTION 'NUMBER_GET_INFO' EXPORTING nr_range_nr = ss_t003-numkr object = con_inri_obj subobject = id_bukrs toyear = t093c-lgjahr IMPORTING interval = ss_nriv EXCEPTIONS interval_not_found = 1 object_not_found = 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.