MOIB_DEFF04 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 MOIB_DEFF04 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!
DIMENSION_GET CALL FUNCTION 'DIMENSION_GET' EXPORTING language = sy-langu length = 3 use_buffer = 'X' IMPORTING dimid = lf_dim_volume.
SI_UNIT_GET CALL FUNCTION 'SI_UNIT_GET' EXPORTING dimension = lf_dim_volume unit = ' ' IMPORTING si_unit = lf_siuom_volume.
OIB_QCI_MOVE_DBTABLE_TO_ITAB CALL FUNCTION 'OIB_QCI_MOVE_DBTABLE_TO_ITAB' EXPORTING i_guid = ls_def_index_gm-default_guid TABLES t_oib_a10 = lt_param t_oib_param = lt_defaults EXCEPTIONS parameter_name_not_valid = 1 unit_missing = 2 OTHERS = 3.
OIB_QCI_MOVE_FIELD_TO_ITAB CALL FUNCTION 'OIB_QCI_MOVE_FIELD_TO_ITAB' EXPORTING i_par_name = 'BSWCN' i_parameter = lf_bswcn TABLES t_oib_a10 = lt_param EXCEPTIONS parameter_name_not_valid = 1 unit_missing = 2 OTHERS = 3.
OIB_QCI_MOVE_FIELD_TO_ITAB CALL FUNCTION 'OIB_QCI_MOVE_FIELD_TO_ITAB' EXPORTING i_par_name = 'METCORFAC' i_parameter = lf_mcf TABLES t_oib_a10 = lt_param EXCEPTIONS parameter_name_not_valid = 1 unit_missing = 2 OTHERS = 3.
OIB_QCI_MOVE_STRUC_TO_ITAB CALL FUNCTION 'OIB_QCI_MOVE_STRUC_TO_ITAB' EXPORTING i_structure = ls_cntrl i_ddic_reference = 'OIB_A11' TABLES t_oib_a10 = lt_param EXCEPTIONS field_type_not_valid = 1 structure_not_exists = 2 OTHERS = 3.
OIB_QCI_MOVE_VALUE_TO_ITAB CALL FUNCTION 'OIB_QCI_MOVE_VALUE_TO_ITAB' EXPORTING i_fieldname = 'COEFF' i_parameter = ls_marc-coeff TABLES t_oib_a10 = lt_param EXCEPTIONS parameter_name_not_valid = 1 unit_missing = 2 OTHERS = 3.
OIB_QCI_MOVE_VALUE_TO_ITAB CALL FUNCTION 'OIB_QCI_MOVE_VALUE_TO_ITAB' EXPORTING i_fieldname = 'TDICH' i_parameter = ls_marc-fdich TABLES t_oib_a10 = lt_param EXCEPTIONS parameter_name_not_valid = 1 unit_missing = 2 OTHERS = 3.
OIB_QCI_QUANTITY_CONTROL CALL FUNCTION 'OIB_QCI_QUANTITY_CONTROL' TABLES t_qt2tab = lt_qtytable t_param = lt_param EXCEPTIONS calculation_failure = 1 calculation_overflow = 2 trans_uom_not_found = 3 unit_conversion_error = 4 window_cancelled = 5 inconsistent_data = 6 out_of_range = 7 inconsistent_customizing = 8 OTHERS = 9.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.