Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Unit Conversion

Former Member
0 Likes
1,207

Hi gyes,

Any function module is there conversion og KG to pound.

Thanks,

Suresh.

6 REPLIES 6
Read only

Former Member
0 Likes
901

FM 'MC_UNIT_CONVERSION' (for material data)

BR, JAcek

Message was edited by: Jacek Slowikowski

Read only

0 Likes
901

<b>UNIT_CONVERSION_SIMPLE</b> convert weights from one UOM to another.

Read only

Former Member
0 Likes
901

Hello Suresh,

Try with these Fm's

WALL_QUANTITY_CONVERT_UNIT

WALL_QUANTITY_CONVERT_UNIT_RND

WSTP

WSTP_CONVERT_UNIT

If useful reward.

vasanth

Read only

Former Member
0 Likes
901

chk this thread

Read only

0 Likes
901

i want to convert KG to POUNT.

Read only

0 Likes
901

ex---

data:c_kg LIKE lips-gewei VALUE 'KG', "Weight unit in kg

c_lb LIKE lips-gewei VALUE 'LB', "Weight unit in lb(pound).

CALL FUNCTION <b>'UNIT_CONVERSION_SIMPLE'</b>

EXPORTING

input = i_ln_items-brgew

unit_in = c_kg

unit_out = c_lb

IMPORTING

output = i_ln_items-brgew_lb.