3.8 LOGOUT Procedure

This procedure closes the session and redirects to the application's home page. Call this procedure directly from the browser.

Syntax

APEX_AUTHENTICATION.LOGOUT ( 
    p_session_id in number, 
    p_app_id in number, 
    p_ws_app_id in number default null );

Parameters

Table 3-5 APEX_AUTHENTICATION.LOGOUT Procedure Parameters

Parameters Description

p_session_id

The Application Express session identifier of the session to close.

p_app_id

The database application identifier.

p_ws_app_id

The websheet application identifier.

Example

This example logs the session out.

apex_authentication.logout(:SESSION, :APP_ID);