This procedure gets supporting object scripts and outputs to sys.dbms_output
buffer or download as a file.
Note:
The workspace ID must be set before the call.
Syntax
APEX_UTIL.GET_SUPPORTING_OBJECT_SCRIPT( p_application_id in number, p_script_type in varchar2, p_output_type in varchar2 default c_output_as_dbms_output );
Parameters
Table 35-60 GET_SUPPORTING_OBJECT_SCRIPT Procedure
Parameter | Description |
---|---|
|
The application ID to get supporting objects from. |
|
The supporting objects script type. Valid values are |
|
The script can be output to |
Examples
The following example shows how to set workspace ID for workspace FRED
, then get install script from application ID 100
and output to the command-line buffer.
set serveroutput on; begin apex_util.set_workspace( p_workspace => 'FRED'); apex_util.get_supporting_object_script( p_application_id => 100, p_script_type => apex_util.c_install_script ); end;
The following example shows how to download upgrade script file from application ID 100
in the browser. Useful if the script needs to be downloaded using an application process.
begin apex_util.set_workspace( p_workspace => 'FRED'); apex_util.get_supporting_object_script( p_application_id => 100, p_script_type => apex_util.c_upgrade_script, p_output_type => apex_util.c_output_as_file ); end;
Parent topic: APEX_UTIL