MOIIC_DIPF03 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_DIPF03 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: QCI-related routines
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHAR_FLTP_CONVERSION CALL FUNCTION 'CHAR_FLTP_CONVERSION' EXPORTING dyfld = pi_str maxdec = pi_maxdec maxexp = pi_maxexp minexp = pi_minexp string = pi_str IMPORTING flstr = po_fltp EXCEPTIONS exponent_too_big = 01 exponent_too_small = 02 string_not_fltp = 03 too_many_decim = 04.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = g_t006-decan input = roii_dip_quan_display-adqnt ivalu = ' ' maskn = ' ' IMPORTING flstr = roii_dip_quan_display-adqnt_str.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = g_t006-decan input = g_dip_quan-adqnt ivalu = ' ' maskn = ' ' IMPORTING flstr = g_dip_quan_display-adqnt_str.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = g_t006-decan input = g_dip_quan-buchm ivalu = ' ' maskn = ' ' IMPORTING flstr = g_dip_quan_display-buchm_str.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = g_t006-decan input = g_dip_param_display-PAR_FLTP ivalu = ' ' maskn = ' ' IMPORTING flstr = g_dip_param_display-PAR_CHAR. "1267489
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.