SAP NUMERICAL FUNCTIONS



Get Example source ABAP code based on a different SAP table
  


• abs ABAP_FUNCTION
• sign ABAP_FUNCTION
• ceil ABAP_FUNCTION
• floor ABAP_FUNCTION
• trunc ABAP_FUNCTION
• frac ABAP_FUNCTION

ABAP_NUMFUNC - abs, sign, ceil, floor , trunc, frac

ABAP_SYNTAX
... num_func( arg ) ...

What does it do?
General built-in numeric functions for exactly one unnamed argument with any numeric data type. These functions are overloaded with the effect that the return value can have different numeric types. The argument of a general numeric function must be a single data object outside an arithmetic expression, and can itself be a numeric expression within an arithmetic expression.
The following table shows the general numeric functions and how they work. Function <(>num_func<)>Return Value ABAP_KEY absAbsolute value of argument arg ABAP_KEY signSign of argument arg: -1, if the value of arg is negative; 0, if the value of arg is 0; 1, if the value of arg is positive ABAP_KEY ceilSmallest integer that is not less than the value of the argument arg ABAP_KEY floorLargest integer that is not greater than the value of the argument arg ABAP_KEY truncValue of the integer part of the argument arg; negative if arg is negative ABAP_KEY fracValue of the decimal places of the argument arg; negative if arg is negative
The following applies to the data type of the return value:
Outside of an arithmetic expression, the data type of the argument determines the data type of the return value.
Within an arithmetic expression, the argument of the function contributes to the calculation type of the entire expression and the function is calculated using the calculation type. If the argument itself is an arithmetic expression, its operands contribute to the entire calculation type and the argument is also calculated with this type.
If the argument arg is a numeric expression, the function works like an arithmetic operator and it is handled in its operand position like an arithmetic expression.
If the argument of a numeric function outside of an arithmetic expression does not have a numeric data type i, int8, p, decfloat16, decfloat34, or f, its data type determines the type of return value as follows:
d and t give i
c, n and string give p
x and xstring givei
utclong is not allowed
Before the calculation of the function, the argument is converted to the corresponding type.



Latest notes:

The time stamp type utclong cannot be converted implicitly to a numeric type, and therefore cannot be specified directly as an argument.
NON_V5_HINTS
The functions listed here are some of the functions that can also be used in the obsolete extended functional operand positions, even if their argument is a single data object.
ABAP_HINT_END

ABAP_EXAMPLE_VX5
The following assertion should always be correct.
ABEXA 01177
ABAP_EXAMPLE_END

ABAP_EXAMPLE_ABEXA
Numeric Functions
ABAP_EXAMPLE_END