RFITEMOLDGL_NO4 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 RFITEMOLDGL_NO4 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: Include RFITEMOLDGL_NO4
FORM INCLUDE_PL_ACCOUNTS.
INCLUDE RFITEM_INC_NO.
No SAP DATABASE tables are accessed within this REPORT code!
ITEM_DERIVE_FIELDS CALL FUNCTION 'ITEM_DERIVE_FIELDS' EXPORTING s_t001 = it_h_t001 s_bsegp = wa_bsegp key_date = p_keydate xopvw = bsis-xopvw CHANGING s_item = wa_pos EXCEPTIONS bad_input = 1 OTHERS = 2.
FI_CURRENCY_INFORMATION CALL FUNCTION 'FI_CURRENCY_INFORMATION' EXPORTING i_bukrs = ip_bukrs IMPORTING e_x001 = wa_x001 EXCEPTIONS currency_2_not_defined = 1 currency_3_not_defined = 2 OTHERS = 3.
LDB_PROCESS CALL FUNCTION 'LDB_PROCESS' EXPORTING ldbname = 'SDF' expressions = it_dyn_texpr[] TABLES callback = it_callback selections = it_selscreen EXCEPTIONS ldb_selections_error = 1 ldb_selections_not_accepted = 2 free_selections_error = 3 callback_no_event = 4 callback_no_program = 5 callback_no_cbform = 6 OTHERS = 7.
RS_REFRESH_FROM_DYNAMICAL_SEL CALL FUNCTION 'RS_REFRESH_FROM_DYNAMICAL_SEL' EXPORTING curr_report = g_repid mode_write_or_move = 'M' IMPORTING p_trange = rt_dyn_trange EXCEPTIONS not_found = 1 wrong_type = 2 OTHERS = 3.
FREE_SELECTIONS_RANGE_2_EX CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_EX' EXPORTING field_ranges = rt_dyn_trange IMPORTING expressions = it_dyn_texpr[].
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.