6.12 GET_AUTO_INSTALL_SUP_OBJ Function

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

Syntax

APEX_APPLICATION_INSTALL.GET_AUTO_INSTALL_SUP_OBJ
RETURN BOOLEAN;

Parameters

None.

Example

The following example returns the value of automatic install of supporting objects setting in the APEX_APPLICATION_INSTALL package.

DECLARE
    l_auto_install_sup_obj boolean;
BEGIN
    l_auto_install_sup_obj := apex_application_install.get_auto_install_sup_obj;
END;