MOIIC_DIPF05 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 MOIIC_DIPF05 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!
OIB_QCI_MOVE_DBTABLE_TO_STRUC CALL FUNCTION 'OIB_QCI_MOVE_DBTABLE_TO_STRUC' "#EC ENHOK
EXPORTING i_ddic_reference = 'ROIITANKDIP' i_guid = pi_tankdip-dip_guid IMPORTING e_structure = l_tankdip TABLES t_oib_param = pi_dip_param EXCEPTIONS structure_not_exists = 1 field_type_not_valid = 2 parameter_name_not_valid = 3 unit_missing = 4 OTHERS = 5.
OIIC_DIP_APPLOG_CREATE CALL FUNCTION 'OIIC_DIP_APPLOG_CREATE'.
OIIC_DIP_APPLOG_REFRESH CALL FUNCTION 'OIIC_DIP_APPLOG_REFRESH'.
OIL_GET_CALLED_FROM_IN CALL FUNCTION 'OIL_GET_CALLED_FROM_IN' "SP2 KH IMPORTING e_call_catt = l_flag "SP2 KH EXCEPTIONS OTHERS = 0. "RC not used "SP2 KH
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'Y' textline1 = 'Do you want to first save the data?'(152) titel = 'Exit tankdip maintenance'(153) IMPORTING answer = dialog_ant. "#EC *
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = g_t006-decan input = roiisochk_d-mttmp_fltp ivalu = ' ' maskn = ' ' IMPORTING flstr = roiisochk_d-mttmp.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = g_t006-decan input = roiisochk_d-shtmp_fltp ivalu = ' ' maskn = ' ' IMPORTING flstr = roiisochk_d-shtmp.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = ls_t006-decan input = g_tankdip_display_wa-totalheight_fltp ivalu = '0' maskn = ' ' IMPORTING flstr = g_tankdip_display_wa-totalheight_str.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = ls_t006-decan input = g_tankdip_display_wa-waterheight_fltp ivalu = '0' maskn = ' ' IMPORTING flstr = g_tankdip_display_wa-waterheight_str.
UNIT_CONVERSION_SIMPLE CALL FUNCTION 'UNIT_CONVERSION_SIMPLE' EXPORTING input = g_stk_ovw_main-relstock unit_in = g_stk_ovw_main-meins unit_out = g_stk_ovw_main-volun IMPORTING output = g_stk_ovw_main-tnkmenge EXCEPTIONS conversion_not_found = 1 division_by_zero = 2 input_invalid = 3 output_invalid = 4 overflow = 5 type_invalid = 6 units_missing = 7 unit_in_not_found = 8 unit_out_not_found = 9 OTHERS = 10.
UNIT_CONVERSION_SIMPLE CALL FUNCTION 'UNIT_CONVERSION_SIMPLE' EXPORTING input = g_totalstocko1-adqnt unit_in = g_totalstocko1-msehi unit_out = g_stk_ovw_main-volun IMPORTING output = g_stk_ovw_main-tnkmenge EXCEPTIONS conversion_not_found = 1 division_by_zero = 2 input_invalid = 3 output_invalid = 4 overflow = 5 type_invalid = 6 units_missing = 7 unit_in_not_found = 8 unit_out_not_found = 9 OTHERS = 10.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.