29.3 REMOVE_MENU_ENTRY Procedure

This procedure removes an existing builder extension menu link entry. Requires the APEX_ADMINISTRATOR_ROLE.

Syntax

APEX_EXTENSION.REMOVE_MENU_ENTRY (
    p_label       IN VARCHAR2,
    p_workspace   IN VARCHAR2  DEFAULT NULL )

Parameters

Parameter Description
p_label Menu entry label.
p_workspace Default NULL, which means the menu entry is from the current workspace. Value can be set to any existing workspace name.

Example

The following example deletes the builder extension menu entry with label "Example" in the current workspace.

BEGIN
    apex_extension.remove_menu_entry(p_label => 'Example');
END;