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: 

Function module for converting number to exponential???

Former Member
0 Kudos

Hi All

please tell me Function module for converting number to exponential.

Deepak

1 ACCEPTED SOLUTION

andreas_mann3
Active Contributor
0 Kudos

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

andreas_mann3
Active Contributor
0 Kudos

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

matt
Active Contributor
0 Kudos

>

> Hi All

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

>

> Deepak

To which base?

andreas_mann3
Active Contributor
0 Kudos

or look F1 to compute:

EXP

LOG

LOG10

A.