Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
marcobuescher
Active Contributor
994
I have found a small but nice program to change the SAP logon language on the fly without the user having to log off and log on again. This program is very useful to me on some days and I save a lot of time to test e.g. functionalities multilingual.

 
REPORT ZBCLNG01 .

data list like msxxlist occurs 10 with header line.

parameters p_spras like sy-langu obligatory default sy-langu.

call function 'TH_SERVER_LIST'
tables
list = list.

loop at list where host = sy-host.
set locale language p_spras.

call function 'TH_REMOTE_TRANSACTION'
exporting
tcode = space
dest = list-name.

exit.
endloop.


 

It is easiest to link it to a transaction e.g. ZLAN (ZLanguage)
2 Comments
Labels in this area