‎2006 Mar 06 5:03 PM
Hi All ,
In the table TVAUT the field BEZEI is used to give the Description. The Description is in many International languages.
Is there a function module or procedure which can convert from one language(text) to other language (text) or to English.
Thanks in Advance.
Kishore Kumar Yerra.
‎2006 Mar 06 5:15 PM
Hi!
You make translations where you define the object. So it's in this case:
SPRO -> Sales and Distribution -> Sales -> Sales Document Header -> Define Order Reasons
Mark the lines you need to translate, then choose in menu Goto -> Translation. Mark the target language and maintain the corresponding translations (repeat for every language you need).
Regards,
Christian
‎2006 Mar 06 5:15 PM
Hi!
You make translations where you define the object. So it's in this case:
SPRO -> Sales and Distribution -> Sales -> Sales Document Header -> Define Order Reasons
Mark the lines you need to translate, then choose in menu Goto -> Translation. Mark the target language and maintain the corresponding translations (repeat for every language you need).
Regards,
Christian
‎2006 Mar 06 5:25 PM
Hi Christian Wohlfahrt ,
It seems we are near to requirement .
but the scenario is that it is z program which generates an ALV output.
and BEZEI is one of the field , so i have to get the field value translated irrespective of the original language to English .
But the solution that is to run manually right , so how do we automate this .
Thanks in Advance
Kishore Kumar Yerra
‎2006 Mar 06 5:28 PM
Hi Kishore,
Since it is a custom program , you can probably use the SET LOCALE or SET LANGUAGE statements.
Regards,
Suresh Datti
‎2006 Mar 06 5:33 PM
Hi Kishore,
If I understood your problem correctly, you can select the record from TVAUT table with where condition as spras = <English>.
you will get the text in English if it is maintained and if it is not maintained in English, Then I'm Afraid, there is no way you can get the english text for the Order Reason.
Select single *
from tvaut
where spras = 'E'
and augru = <YOur Order Reason code>.
write:/ tvaut-bezei.
Regards,
Ravi
‎2006 Mar 07 4:14 AM
Hi ,
Please look into transaction SE63 and SNL3.
If this work out pelase award sutiable points and close the thread.
Regards,
Irfan Hussain
‎2006 Mar 07 4:26 AM
if u want text in english just add one condition in select statement,,
SELECT BEZEI INTO GV_BEZEI FROM DBTAB
where spras = 'E'.