cancel
Showing results for 
Search instead for 
Did you mean: 

Localization example

Former Member
0 Kudos

Hi

I need example how to work with Localization under Visualization services

any idea

thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

in the Localization, click new and enter

- a Name for the tag, e.g. "BTN_SAVE"

- enter the translations in the according fields

To use this tags, create a IRPT page (HTML page with file ending .irpt). Inside the html, use

{##BTN_SAVE}

to let the MII preprocessor choose the text from the language which is defined for the current user in the UME.

For more info see [Localization in Web pages|http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm].

If you want to use the tags inside JavaScript, you have to define hidden IDs like this:

<input type="hidden" value="{##BTN_SAVE}" id="BTN_SAVE">

Then you can address it in JavaScript using the ID.

Michael

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Have you checked in SAP MII Help there is example also for localization.

If you are on SAP MII 12.1 than following is the help

[http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm]

Regards,

Manoj Bilthare

Former Member
0 Kudos

Thanks both

I should have checked in Help

thanks again