8.38 SET_APPLICATION_NAME Procedure
This procedure sets the application name of the application to be imported.
Syntax
APEX_APPLICATION_INSTALL.SET_APPLICATION_NAME (
    p_application_name  IN VARCHAR2 )Parameters
| Parameter | Description | 
|---|---|
p_application_name | 
                              This is the application name. The application name cannot be null and must be 255 characters or less. | 
Example
The following example sets the application name for app 100 to "Executive Dashboard".
BEGIN
  apex_application_install.set_application_name( p_application_name => 'Executive Dashboard' );
END;
/
@f100.sqlSee Also:
Parent topic: APEX_APPLICATION_INSTALL