Video Lesson 4.3: Performing ABAP Calculations
In this lesson you will use basic ABAP statements like ADD, SUBTRACT and MULTIPLY to perform math calculations.
In ABAP you can program arithmetic expressions nested to any depth. Valid operations include:
- + Addition
- - Subtraction
- * Multiplication
- / Division
- ** Exponentiation
- DIV Integral division without remainder
- MOD Remainder after integral division