4.30 SET_AUTO_INSTALL_SUP_OBJ Procedure

This procedure sets the automatic install of supporting objects value used during application import. This setting is valid only for command line installs. If the value is set to TRUE and the application export contains supporting objects, it automatically installs or upgrades the supporting objects when an application imports from the command line.

Syntax

APEX_APPLICATION_INSTALL.SET_AUTO_INSTALL_SUP_OBJ(
    p_auto_install_sup_obj IN BOOLEAN);

Parameters

Table 4-11 SET_AUTO_INSTALL_SUP_OBJ Parameters

Parameter Description

p_auto_install_sup_obj

The automatic install of supporting objects Boolean value.

Example

The following example gets the automatic install of supporting objects setting. If it is not set to install automatically, it sets to true to override export file settings of automatic install of supporting objects.

begin
    apex_application_install.set_auto_install_sup_obj( p_auto_install_sup_obj => true );
end;