‎2006 Dec 21 5:43 AM
Dear gurus,
I want to take the UOM conversion factor
values maintianed in material master
from which table i can take it
any ideas on this gurus...
senthil
‎2006 Dec 21 5:44 AM
Hi,
use the table MARM..
Or use the FM MD_CONVERT_MATERIAL_UNIT to convert the quantity..
Thanks,
Naren
‎2006 Dec 21 5:44 AM
Hi,
use the table MARM..
Or use the FM MD_CONVERT_MATERIAL_UNIT to convert the quantity..
Thanks,
Naren
‎2006 Dec 21 5:45 AM
‎2006 Dec 21 5:51 AM
Hi Senthil,
Try this
CALL FUNCTION 'MD_CONVERT_MATERIAL_UNIT'
EXPORTING
I_MATNR = PWA_CONFIRM-MATNR
I_IN_ME = PWA_CONFIRM-MEINS
I_OUT_ME = C_LB
I_MENGE = PW_MENGE
IMPORTING
E_MENGE = PW_MENGE
EXCEPTIONS
ERROR_IN_APPLICATION = 1
ERROR = 2
OTHERS = 3.
IF SY-SUBRC <> 0.
PW_MENGE = PW_MENGE * 48.
ENDIF.Regards,
Raghav
‎2006 Dec 21 5:53 AM
Hi,
Please reward points for helpful answers..And close the thread if the problem is solved..
Thanks,
Naren
‎2006 Dec 21 6:22 AM
Are u trying to convert this uoms or u want to pick the value of the mpk for that material ?
if u want to convert the uoms u can check the
function module
<b>UNIT_CONVERSION_SIMPLE</b>
for table reference <b>MARM fields for are meinh , umrez , umren .</b>
hope this helps ,
regards,
vijay