Home > Oracle Application Express ... > APEX_CUSTOM_AUTH > POST_LOGIN Procedure
POST_LOGIN Procedure |
![]() Previous |
![]() Next |
This procedure performs session registration, assuming the authentication step has been completed. It can be called only from within an Oracle Application Express application page context.
Syntax
APEX_CUSTOM_AUTH.POST_LOGIN( p_uname IN VARCHAR2, p_session_id IN VARCHAR2, p_app_page IN VARCHAR2, p_preserve_case IN BOOLEAN);
Parameter
Table: POST_LOGIN Parameters describes the parameters available in the POST_LOGIN procedure.
POST_LOGIN Parameters
| Parameter | Description |
|---|---|
|
|
Login name of user. |
|
|
Current Oracle Application Express session ID. |
|
|
Current application ID and after login page separated by a colon (:). |
|
|
If true, do not include |
Example
BEGIN
APEX_CUSTOM_AUTH.POST_LOGIN (
p_uname => 'SCOTT',
p_session_id => V('APP_SESSION'),
p_app_page => :APP_ID||':1');
END;