Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

LOGIN BASED ON TABLE AND STORE PROCEDURE

37693Jul 16 2005 — edited Aug 10 2005
Can someone help me please I am building an application based on a user table I have created in my schema but I do not want to use
wwv_flow_custom_auth_std.login(
P_UNAME => v('P1_USERNAME'),
P_PASSWORD => :P1_PASSWORD,
P_SESSION_ID => v('APP_SESSION'),
P_FLOW_PAGE => :APP_ID||':2'
);
I would like to create a stored based on the user like
obj_login(P_USERNAME => :P1_USERNAME,
P_PASSWORD => :P1_PASSWORD,
P_SESSION_ID => v('APP_SESSION'),
P_FLOW_PAGE => :APP_ID||':2'
);
Because after login I will like to send them to a page based on another role table I have created.

Please help it is urgent
Best Regard
Abby
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 7 2005
Added on Jul 16 2005
6 comments
381 views