This procedure deinstalls specified packaged application. If invalid packaged application ID passed, the procedure raises an error.
Syntax
APEX_PKG_APP_INSTALL.DEINSTALL(
    p_app_id in number );
Parameters
Table 24-1 DEINSTALL Procedure Signature 1 Parameters
| Parameter | Description | 
|---|---|
| 
 | The packaged application ID. | 
Example
The following example shows how to use DEINSTALL procedure to deinstall packaged application ID 7060 from DEMO workspace.
begin
    APEX_UTIL.SET_WORKSPACE( 'DEMO' );
    APEX_PKG_APP_INSTALL.DEINSTALL( 
        p_app_id => 7060 );
end;
Parent topic: APEX_PKG_APP_INSTALL