MUNITI02 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 MUNITI02 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 MUNITI02
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 string = h_comb_pres_value IMPORTING flstr = t006_oib-comb_pres EXCEPTIONS exponent_too_big = 01 exponent_too_small = 02 string_not_fltp = 03 too_many_decim = 04.
CHAR_FLTP_CONVERSION CALL FUNCTION 'CHAR_FLTP_CONVERSION' EXPORTING string = h_comb_temp_value IMPORTING flstr = t006_oib-comb_temp EXCEPTIONS exponent_too_big = 01 exponent_too_small = 02 string_not_fltp = 03 too_many_decim = 04.
DIMENSION_GET CALL FUNCTION 'DIMENSION_GET' EXPORTING language = sy-langu length = '1-' mass = 1 time = '2-' IMPORTING dimid = h_dimension_key EXCEPTIONS dimension_not_found = 1 OTHERS = 2.
DIMENSION_CHECK CALL FUNCTION 'DIMENSION_CHECK' EXPORTING dimid = h_dimension_key language = sy-langu msehi = t006_oib-comb_pres_unit EXCEPTIONS dimension_check_failed = 01 unit_not_valid = 02.
DIMENSION_GET CALL FUNCTION 'DIMENSION_GET' EXPORTING language = sy-langu temperature = 1 use_buffer = 'X' IMPORTING dimid = h_dimension_key EXCEPTIONS dimension_not_found = 01.
DIMENSION_CHECK CALL FUNCTION 'DIMENSION_CHECK' EXPORTING dimid = h_dimension_key language = sy-langu msehi = t006_oib-comb_temp_unit EXCEPTIONS dimension_check_failed = 01 unit_not_valid = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.