Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Table for translated items

Former Member
0 Kudos

Hi,

can anyone tell me in which SAP Table I can find the translation to different languages in SAP. For example in the TA CO03 in Header in General Screen I have the field Delivered which returns the delivered quantity for the production order. When I log on to the system in German language (de) the field appears translated as Geliefert. My question is in which SAP Table I can find the translation for the Transaction fields. I need a table similar to TSTCT for the Transaction Text. I want to start the query with only the languages de and en and the system to return all the fields with the translation.

If there isnu2019t only one table which contains all the SAP Transaction fields and itu2019s translation can you please tell me how I can find these tables (the steps I need to follow in order to get this information) for one transaction let's say CO03 or VD03 etc.?

Thanks to all of you

Bogdan

1 REPLY 1

ThomasZloch
Active Contributor
0 Kudos

Difficult, language dependent texts are all over the place.

Report texts (probably like your example "delivered") are stored in REPOTEXT, but can only be read via ABAP statement READ TEXTPOOL.

CUA texts are stored in RSMPTEXTS.

That might be a start.

Thomas