8.41 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 is imported from the command line.
Syntax
APEX_APPLICATION_INSTALL.SET_AUTO_INSTALL_SUP_OBJ (
p_auto_install_sup_obj IN BOOLEAN )
Parameters
Parameter | Description |
---|---|
p_auto_install_sup_obj |
Boolean value for the automatic install of supporting objects. |
Example
The following example enables the automatic installation of supporting objects for app 100.
BEGIN
apex_application_install.set_auto_install_sup_obj( p_auto_install_sup_obj => true );
END;
/
@f100.sql
See Also:
GET_AUTO_INSTALL_SUP_OBJ FunctionParent topic: APEX_APPLICATION_INSTALL