Make hard-coded text in SAP ABAP translatable
Make hard-coded text in SAP ABAP translatable
You want to translate hard-coded strings? Here is how you should proceed!
I was tasked to replace hard-coded texts with text elements to output them in different languages. Now I have the following problem.
Example:
Hard-coded text
WRITE 'PO Number'.
from this I tried to replace the hard-coded text ‘PO Number’ with a text element in the form
WRITE:/ Text-210 (101). /// Text-210 is PO Number
but…
View On WordPress














