Posts

Showing posts from May, 2025

Mastering Basic Math Functions in ABAP with Examples

Image
  LIST OF VARIOUS MATHEMATICAL FUNCTIONS IN ABAP ABAP FUNCTION NAME DESCRIPTION ABS() This function calculates the absolute value of the given argument. SIGN() This function calculates the sign of the given argument. If the sign is positive it returns 1, if the sign is negative it returns -1 otherwise it returns 0. CEIL() This function calculates the smaller integer value of the given argument. FLOOR() This function calculates the largest integer value of the given argument. TRUNC() This function Truncates and returns the integer part of the given value as argument. FRAC() This function returns the fractional part of the given value as argument. MOD This function calculates the remainder of a number divided by another number. ROUND() This function Rounds off a number upto a ...