29.5 SET_WORKSPACE Procedure Signature 2

This procedure sets the current workspace to the workspace that is processed by the extension application or background automation by its name.

After calling this API, all Oracle APEX dictionary views show the metadata of that workspace.

Syntax

APEX_EXTENSION.SET_WORKSPACE (
    p_name  IN VARCHAR2 )

Parameters

Parameter Description
p_name The (display) name of the workspace to be accessed.

Example

The following example sets access for an extension application to workspace MYWORKSPACE.

BEGIN
    apex_extension.set_workspace( p_name => 'MYWORKSPACE');
END;