SAP GET LOCALE ABAP Statements
Get Example source ABAP code based on a different SAP table
ID GET-LOCALE-LANGUAGE
• GET LOCALE LANGUAGE ABAP Statement
ABAP_SYNTAX
What does it do?
The language key of the current
Latest notes:
The imported text environment language of the current text environment can be used to restore the environment after it has been changed using the statement
ABAP_HINT_END
Example ABAP Coding
Determining the current text environment and restoring it after a change.
dummy TYPE string ##needed.
GET LOCALE LANGUAGE lang COUNTRY dummy MODIFIER dummy.
SET LOCALE LANGUAGE ...
...
SET LOCALE LANGUAGE lang.>
ABAP_EXAMPLE_END
Return to menu