Changing the Start Page after loggin in the application
665077Oct 14 2008 — edited Oct 15 2008How can we change the start page once i log in to the oracle apex application.I took the following measures to change the page number
The default source code for the login page 101 process is
wwv_flow_custom_auth_std.login(
P_UNAME => :P2_USERNAME,
P_PASSWORD => :P2_PASSWORD,
P_SESSION_ID => v('APP_SESSION'),
P_FLOW_PAGE => :APP_ID||':1'
);
I tried to change the P_FLOW_PAGE variable to page 15 as below
P_FLOW_PAGE => :APP_ID||':15'
but still no luck,still the login page is redirecting me to page 1 only instead of page 15.Can any of the experts here please help.
Thanks