cancel
Showing results for 
Search instead for 
Did you mean: 

Internationalization??

Former Member
0 Kudos

Hi All,

I want to develop webdynpro abap application using internationalisation. Can anybody give me the step by step procedure for how to create otr texts in sotr_edit transaction and using those texts in webdynpro application.

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

yesrajkumar
Active Participant
0 Kudos

Hi,

Go to Transaction sotr_edit

An example to create a text as follows,

Language ENGLISH

Package PTRM_WEB_UI

Alias PTRM_WEB_UI/END_DATE

Object Type WDYV

click the menu edit->context->create

then create for the countries you want.

finally describe the Allias name to your UI element like

text of UI = $OTR:PTRM_WEB_UI/END_DATE

Thanks,

Rajkumar.S

Edited by: Rajkumar S on Jan 3, 2009 1:52 PM

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi Rajkumar,

Thanks for ur reply.But when i m creating context it is asking industry type for country and it is not accepting.I know only basic knowledge in ABAP.Can u please give the detailed procedure for creating OTR texts and how to use it in webdynpro abap.

Thanks in advance.

Former Member
0 Kudos

Hi,

For step by step process,please refer to this blog : /people/gopi.nidjelli/blog/2008/10/20/internationalization-and-translation-for-wd4a

Regards,

Indu

pranav_nagpal2
Contributor
0 Kudos

Hi Srilalitha,

1. Go to SOTR_EDIT.

2. Select language for which you want to create OTR.

3. Give alias name package_name\alias_name is general format to give the name of alias...

4. click on create.

5. Give package and all.

6.in object type select for web dynpro view.

now remember the alias name and go to Webdynpro. if you are statically binding the text with your OTR just click on f4 type help button of text property of your UI element....

if you want to bind the otr dynamically depending on some condition this is the method

data : otr_servcentrale type string.
   otr_servcentrale = cl_wd_utilities=>get_otr_text_by_alias(
                                            'ZHRWEBDEV/SERV_CENTRAL') .

regards

Pranav

Former Member
0 Kudos

Hi,

You can go throught this link it might help you a lot in OTR TEXT.

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/0a/784941bb75f623e10000000a155106/content.

You can also refer to the prog.

WDR_TEST_MISC.

Regards,

Anand

arjun_thakur
Active Contributor
0 Kudos

Hi Srilalitha,

Please refer to the following thread:

https://forums.sdn.sap.com/click.jspa?searchID=20512899&messageID=6333817

I hope it helps.

Regards

Arjun

Former Member
0 Kudos

Hi,

I think this links can help you on translating application:

http://help.sap.com/saphelp_nw04s/helpdata/en/0a/784941bb75f623e10000000a155106/frameset.htm

http://help.sap.com/saphelp_nw04s/helpdata/en/43/787a85600d6fc9e10000000a1553f6/frameset.htm

After defined the entries you can point the Text property of you component to OTR repository.

Best regards