Syntax error Using logarithm in SAP ABAP

Using logarithm in SAP ABAP



Yes, there is a log function. You can use it to implement your requirement.

Here is a code snippet which might be of some help for your implementation.

DATA:  NUMBER  TYPE INT,
       BASE TYPE INT,
       RESULT  TYPE FLOAT

Let’s say:

Number=16
BASE=4
RESULT= log(NUMBER)/log(BASE)

RESULT will be 2.

Updated on: 2019-12-10T07:46:01+05:30

734 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements