My requirement is that in the Recipient address of the Invoice, I need to change the country name from its system language to always English. For e.g. Belgique in F would always be represented as Belgium in E.
The problem I have is within the std SAP program for the Invoice a function module ADDR_GET is used to extract and format the address. So the last line that contains the country is always concatenated with the Zip code. Also the country always appears as all caps. For e.g. 4115 BELGIQUE
I can split the last line at space to get 4115 and BELGIQUE but am unable to query T005T with landx as it is case sensitive. So for countries with many words in their name, there is no consistency on which first char is cap and which is not. How to accomplish this? Any ideas.