2007 Dec 05 8:42 AM
Can anyone suggest function module to convert weight in LB(pounds) or other units to Kilograms(KG).
2007 Dec 05 8:43 AM
Hi Venkata,
Just use the following FM :
CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
EXPORTING
input = slk-btgew " Weight in LB
unit_in = slk-gewei " LB
unit_out = vttkvb-dtmeg " KG
IMPORTING
output = slk-btgew. " Output : Weight in KGHope this helps,
Erwan
Can anyone suggest function module to convert weight in LB(pounds) or other units to Kilograms(KG).
2007 Dec 05 8:43 AM
Hi Venkata,
Just use the following FM :
CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
EXPORTING
input = slk-btgew " Weight in LB
unit_in = slk-gewei " LB
unit_out = vttkvb-dtmeg " KG
IMPORTING
output = slk-btgew. " Output : Weight in KGHope this helps,
Erwan
2007 Dec 05 8:44 AM
Venkat,
Check this Fn Module MD_CONVERT_MATERIAL_UNIT.
K.Kiran.