MM06EFBA_BAT_PRUEFEN_FC 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 MM06EFBA_BAT_PRUEFEN_FC 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!
MATERIAL_UNIT_CONVERSION CALL FUNCTION 'MATERIAL_UNIT_CONVERSION' EXPORTING matnr = *eban-matnr meinh = ekpo-meins meins = *eban-meins IMPORTING output = f1 "nicht benötigt umren = humren umrez = humrez EXCEPTIONS conversion_not_found = 01 input_invalid = 02 material_not_found = 03 meinh_not_found = 04 meins_missing = 05 no_meinh = 06 output_invalid = 07 overflow = 08.
CONVERSION_FACTOR_GET CALL FUNCTION 'CONVERSION_FACTOR_GET' EXPORTING no_type_check = 'X' unit_in = ekpo-meins unit_out = *eban-meins IMPORTING denominator = fn "HUMREN numerator = fz "HUMREZ EXCEPTIONS conversion_not_found = 01 overflow = 02 type_invalid = 03 units_missing = 04 unit_in_not_found = 05 unit_out_not_found = 06.
CONVERT_TO_FRACT5 CALL FUNCTION 'CONVERT_TO_FRACT5' EXPORTING nomin = fz denomin = fn IMPORTING nomout = humrez denomout = humren EXCEPTIONS conversion_overflow = 1 OTHERS = 2.
ME_CHECK_T160M CALL FUNCTION 'ME_CHECK_T160M' EXPORTING I_ARBGB = '06' I_MSGNR = '386' I_MSGVS = '00' EXCEPTIONS ERROR = 01 NOTHING = 02 WARNING = 03.
ME_CHECK_T160M CALL FUNCTION 'ME_CHECK_T160M' EXPORTING i_arbgb = '06' i_msgnr = '386' i_msgvs = '00' EXCEPTIONS error = 01 nothing = 02 warning = 03.
ME_CCP_ACTIVE_CHECK CALL FUNCTION 'ME_CCP_ACTIVE_CHECK' IMPORTING ef_ccp_active = lf_ccp_active.
MATERIAL_UNIT_CONVERSION CALL FUNCTION 'MATERIAL_UNIT_CONVERSION' EXPORTING matnr = *eban-matnr meinh = abt-meins meins = *eban-meins IMPORTING output = f1 "nicht benötigt umren = humren umrez = humrez EXCEPTIONS conversion_not_found = 01 input_invalid = 02 material_not_found = 03 meinh_not_found = 04 meins_missing = 05 no_meinh = 06 output_invalid = 07 overflow = 08.
CONVERSION_FACTOR_GET CALL FUNCTION 'CONVERSION_FACTOR_GET' EXPORTING no_type_check = 'X' unit_in = abt-meins unit_out = *eban-meins IMPORTING denominator = fn "HUMREN numerator = fz "HUMREZ EXCEPTIONS conversion_not_found = 01 overflow = 02 type_invalid = 03 units_missing = 04 unit_in_not_found = 05 unit_out_not_found = 06.
CONVERT_TO_FRACT5 CALL FUNCTION 'CONVERT_TO_FRACT5' EXPORTING nomin = fz denomin = fn IMPORTING nomout = humrez denomout = humren EXCEPTIONS conversion_overflow = 1 OTHERS = 2.
ME_CCP_ACTIVE_CHECK CALL FUNCTION 'ME_CCP_ACTIVE_CHECK' IMPORTING ef_ccp_active = lf_ccp_active.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.