Application Development 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: 

conversion of weight from KG to Pounds

Former Member
0 Kudos

hello experts,

I am retreiving the details from LIPS table based on the delivery number, I want to chage the weight unit from KGs to Pounds and vice versa based on the country.how to convert it.

thanks in advance,

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Himabindhu ,

Try using these function modules..

BKKT_BKKTERM_CONVERT_TERMUNIT

BKKT_BKKTERM_CONVERT_UNIT

or you can directly do it by taking the normal conversion .

1 kg = 0.4593 pounds.

Hope it helps!

Much Regards ,

Amuktha .

Edited by: Amuktha Naraparaju on Feb 6, 2009 12:37 PM

8 REPLIES 8

Former Member
0 Kudos

Hi Himabindhu ,

Try using these function modules..

BKKT_BKKTERM_CONVERT_TERMUNIT

BKKT_BKKTERM_CONVERT_UNIT

or you can directly do it by taking the normal conversion .

1 kg = 0.4593 pounds.

Hope it helps!

Much Regards ,

Amuktha .

Edited by: Amuktha Naraparaju on Feb 6, 2009 12:37 PM

Former Member
0 Kudos

U can write a simple logic to convert ...

1 pound = 453.59237 grams

viquar_iqbal
Active Contributor
0 Kudos

HI

you can use keyword SET COUNTRY based on which it can change the weights currency etc

Thanks

Viquar Iqbal

Former Member
0 Kudos

Hi,

Refer the following thread:

Regards,

Nitin.

Former Member
0 Kudos

Former Member
0 Kudos

Hi,

You can try this function module



'UNIT_CONVERSION_SIMPLE'

"OR
CIF_GEN_CONVERT_BASE_UOM

Thanks

Arun

Edited by: Arun Kayal on Feb 6, 2009 12:48 PM

Former Member
0 Kudos

Hi,

sorry for reposting

Edited by: Rahul Kumar Sinha on Feb 6, 2009 12:47 PM

Former Member
0 Kudos

Hi,

conversions:

1 kg = 2.20462262 pounds.

1 pound = 0.45359237 kg.

say retriving data from lisp table into i_tab(with header line) .

loop at i_tab.

case: i_tab-unit.

when 'KG'.

+ conversion.+

when 'PND'

Do conversion.

endcase.

modify i_tab transporting unit quan where <condition>.

Regards,

Mdi.Deeba