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 9-7 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;
Parent topic: APEX_CUSTOM_AUTH