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

Converting temperature

marisa_quaresma
Explorer
0 Likes
1,082

Hi.

I need to know how I convert degrees into fahreneit is there any function or table that can help me to do this?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
724

Hi,

Google provided the following;

To convert from Celsius to Fahrenheit, first multiply by 180/100, then add 32

To convert from Fahrenheit to Celsius, first subtract 32, then multiply by 100/180

I guess you could write some ABAP to do this.

Regards,

Nick

3 REPLIES 3
Read only

Former Member
0 Likes
724

I don't think so.

But is a simple formula for conversion.

Even you can create your own FM using import and export parameters.

Regds,

Anil

Read only

Former Member
0 Likes
724

Hi,

Am not sure if there is a standard function module to convert degrees into farenheit. But if you feel that you will be needing it frequently, you can create your own zfunction module to convert degrees to farenheit and call it when required.

Read only

Former Member
0 Likes
725

Hi,

Google provided the following;

To convert from Celsius to Fahrenheit, first multiply by 180/100, then add 32

To convert from Fahrenheit to Celsius, first subtract 32, then multiply by 100/180

I guess you could write some ABAP to do this.

Regards,

Nick