- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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.
- Related Articles
- Using real Boolean type in SAP ABAP
- Error while using LOOP…..WHERE in SAP ABAP
- Using datatype/element for destination in SAP ABAP
- ABAP dump while creating an entry in SAP system using SAP JCO
- Negation logic in SAP ABAP
- Declare dynamically in SAP ABAP
- Sending an itab to SAP Spool using ABAP method
- What is SAP ABAP?
- Create database view in SAP ABAP
- Getting unauthorized exception in SAP ABAP
- Sort Datetime Type in SAP ABAP
- Equivalent for Row_Number() in SAP ABAP
- Debugging an Asynchronous RFC in SAP ABAP
- Defining a variable reference in SAP ABAP
- Form a dynamic Query in SAP ABAP

Advertisements