ABAP Keyword Documentation → ABAP - Reference → Processing Internal Data → Character String and Byte String Processing → Expressions and Functions for String Processing → string_exp - String Expressions → string_exp - String Templates → Examples of string templates
Character String Templates, Number Formats
The example demonstrates the various number formats for embedded expressions.
Other versions: 7.31 | 7.40 | 7.54
Source Code
DATA: land TYPE t005x-land,
xdezp TYPE t005x-xdezp,
number TYPE p DECIMALS 2 VALUE '1234567.89'.
setup( ).
SELECT land xdezp
FROM t005x
INTO (land,xdezp)
WHERE land LIKE '@%'.
result-col1 = xdezp.
result-col2 = |{ number COUNTRY = land }|.
APPEND result TO result_tab.
ENDSELECT.
teardown( ).
display( ).
Description
A number is output in all possible country-specific number
formats using parameter COUNTRY
.
For this purpose, in the setup
and teardown
help
methods, temporary rows with the possible values of column XDEZP are inserted into database table T005X and are deleted again once they have been used.