FMRE_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 FMRE_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.
Title: Common FORM routines
INCLUDE FMRE_MSGSTORE1.
No SAP DATABASE tables are accessed within this REPORT code!
FMRK_PREPARE_COBL_CHECK CALL FUNCTION 'FMRK_PREPARE_COBL_CHECK' TABLES t_coblf = t_coblf.
COBL_SEND_PBO CALL FUNCTION 'COBL_SEND_PBO' EXPORTING dclass = dclass icobl = u_f_cobl full_always = full_always IMPORTING dynnr = g_cobl_dynp progn = g_cobl_prog no_suitable_dynpro = no_suitable_dynpro TABLES icoblf = t_coblf.
COBL_SEND_PAI_ALL CALL FUNCTION 'COBL_SEND_PAI_ALL' EXPORTING cobl_pai = u_f_cobl check_always = u_flg_check_rwin fcode = l_okcode.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL' * exporting * _SYNCHRON = ' ' EXCEPTIONS OTHERS = 1.
FMR3_ADD_CONSUMPTION_KBLD CALL FUNCTION 'FMR3_ADD_CONSUMPTION_KBLD' TABLES t_kble = t_kble t_kblew = t_kblew CHANGING c_f_kbld = c_f_kbld EXCEPTIONS OTHERS = 1.
FMR8_CUSTOMIZED_MESSAGE CALL FUNCTION 'FMR8_CUSTOMIZED_MESSAGE' EXPORTING i_msgid = con_re i_msgtype = con_w_msg i_msgnum = '173' i_var1 = c_f_kbld-belnr i_var2 = c_f_kbld-blpos.
FMR8_CUSTOMIZED_MESSAGE CALL FUNCTION 'FMR8_CUSTOMIZED_MESSAGE' EXPORTING i_msgid = con_re i_msgtype = con_w_msg i_msgnum = '172' i_var1 = c_f_kbld-belnr i_var2 = c_f_kbld-blpos i_var3 = l_ueb_out.
FMR8_CHECK_TOLERANCE CALL FUNCTION 'FMR8_CHECK_TOLERANCE' EXPORTING i_consumption = u_newamount i_approvedamount = u_approvedamount i_uebto = u_uebto i_flg_unl = u_flg_consume i_flg_tolov = u_flg_tolov i_blart = u_blart i_bltyp = u_bltyp i_hwaer = u_hwaer i_waers = u_waers IMPORTING e_status = l_status CHANGING c_uebproz = c_uebproz c_uebtxt = l_uebtxt.
FMR3_UPDATE_KBLE_REFERENCE CALL FUNCTION 'FMR3_UPDATE_KBLE_REFERENCE' EXPORTING i_belnr = t_kbld-belnr only_check = con_on "/ kein Forschreibung, nur Prüfung i_status = u_status TABLES t_kbld = l_t_kbld EXCEPTIONS OTHERS = 1.
FMR8_SET_KBLE_RECORD CALL FUNCTION 'FMR8_SET_KBLE_RECORD' TABLES t_reftab = l_t_reftab t_r_kblk = t_kblk t_r_kblp = t_kblp t_r_kble = t_kble t_r_kblew = t_kblew t_mod_kble = t_mod_kble t_mod_kblew = t_mod_kblew EXCEPTIONS error_occured = 1 OTHERS = 2.
FMR3_ADD_CONSUMPTION_KBLD CALL FUNCTION 'FMR3_ADD_CONSUMPTION_KBLD' TABLES t_kble = t_kble t_kblew = t_kblew CHANGING c_f_kbld = t_kbld.
BDC_RUNNING CALL FUNCTION 'BDC_RUNNING' IMPORTING bi_info = l_running_info EXCEPTIONS bi_invalid_data = 1 bi_notaktiv = 2 OTHERS = 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.