Previous |
Next |
This procedure sets the application name of the import application.
Syntax
APEX_APPLICATION_INSTALL.SET_APPLICATION_NAME;( p_application_name IN VARCHAR2);
Parameters
Table: SET_APPLICATION_NAME Parameters describes the parameters available in SET_APPLICATION_NAME
procedure.
SET_APPLICATION_NAME Parameters
Parameter | Description |
---|---|
|
This is the application name. The application name cannot be null and cannot be longer than 255 characters. |
Example
The following example sets the application name in APEX_APPLICATION_INSTALL
to "Executive Dashboard".
declare l_name varchar2(255) := 'Executive Dashboard'; begin apex_application_install.set_application_name( p_application_name => l_name ); end;