6.32 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

Table 6-4 SET_APPLICATION_NAME Parameters

Parameter Description
p_application_name This is the application name. The application name cannot be null and must be fewer than 255 characters.

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.sql