cancel
Showing results for 
Search instead for 
Did you mean: 

Material Quantity Conversion - Base UOM to Sales UOM

Former Member
0 Kudos

Hi,

Is there any SAP Function Modules to Convert a Matrial Quantity from Base UOM into Sales UOM?

Appreciate Your Help!.

Thanks,

Kannan.

Accepted Solutions (1)

Accepted Solutions (1)

naimesh_patel
Active Contributor
0 Kudos

You can use this FM:

  CALL FUNCTION 'MD_CONVERT_MATERIAL_UNIT'
    EXPORTING
      I_MATNR                    = WS_BSEG-MATNR  " < material
      I_IN_ME                    = WS_BSEG-MEINS " < Base Uom
      I_OUT_ME                   = LF_MEINS " < Sales Uom
      I_MENGE                    = LF_E_MENGE " < Qty in Base Uom
    IMPORTING
      E_MENGE                    = LF_I_MENGE " < Qty in Sales Uom

Regards,

Naimesh Patel

Answers (0)