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

Function module for converting number to exponential???

Former Member
0 Likes
613

Hi All

please tell me Function module for converting number to exponential.

Deepak

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
588

try:

REPORT Zconvertf.

parameters p1 type p decimals 2 default '4711.99'.

data f1 type f.

move p1 to f1.

write: / p1, f1.

hope that helps

Andreas

3 REPLIES 3
Read only

andreas_mann3
Active Contributor
0 Likes
589

try:

REPORT Zconvertf.

parameters p1 type p decimals 2 default '4711.99'.

data f1 type f.

move p1 to f1.

write: / p1, f1.

hope that helps

Andreas

Read only

matt
Active Contributor
0 Likes
588

>

> Hi All

> please tell me Function module for converting number to exponential.

>

> Deepak

To which base?

Read only

andreas_mann3
Active Contributor
0 Likes
588

or look F1 to compute:

EXP

LOG

LOG10

A.