How to & p_lang in url correctly?

Hello!

I has a language button in the navigation bar and want to change the language of session when I click it.

I found that I can do using the & p_lang = en in the url. I tried to put across but all the results in a mistake or drops me to the page of connection or without result.

My guess is that I could do to shared-> components navigation bar entries-> edit grid where I see something like "f?" p = & APP_ID.:1: & SESSION. : & DEBUG. ': ' in the target column, but without success.

Can someone guide me here?

IM using APEX version 4.2.1

See this blog for your answer: http://insum-apex.blogspot.com/2010/04/apex-40-language-derived-from-session.html

Look for the following block of code:

In my demo application, to switch from one language to another, I created a "Switch Lang" button that calls a PL/SQL process that performs:

if nvl(apex_util.get_session_lang,'en-us') = 'en-us'     then apex_util.set_session_lang('fr-ca');     else apex_util.set_session_lang('en-us'); end if;

Thank you

Tony Miller
Software LuvMuffin
Ruckersville, WILL

Tags: Database

Similar Questions

Maybe you are looking for