Remove a source usage from the panel. Once a usage is removed from a panel, updates from that usage will no longer be available.
Input
Parameter | Type | Description |
|---|---|---|
p_panelver_id | NUMBER | Primary key of the panel_version. |
p_usage_name | VARCHAR2 | Name of the usage to be removed from the panel. |
Example
DECLARE v_usage_name constant VARCHAR2(50 char) := 'Harbour(2500-4999)'; v_panelver_id constant NUMBER := 99; BEGIN p_pprapi.del_panel_source_usage (v_panelver_id, v_usage_name); END; / |
Exceptions
• Panel version identifier '<panelver_id>' is invalid or does not currently exist.
• Unable to find chart associated with the panel.
• Cannot find identifier for usage with the name '<usage_name>'.