|  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  DEFAULT NULL,
    p_session_id               IN  VARCHAR2  DEFAULT NULL,
    p_app_page                 IN  VARCHAR2  DEFAULT NULL,
    p_preserve_case            IN  BOOLEAN   DEFAULT FALSE);
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
The following example performs the session registration following a successful authentication.
BEGIN
    APEX_CUSTOM_AUTH.POST_LOGIN (
        p_uname       => 'FRANK',
        p_session_id  => V('APP_SESSION'),
        p_app_page    => :APP_ID||':1');
END;