8.10 GET_APPLICATION_NAME Function
This function gets the application name of the import application.
Syntax
APEX_APPLICATION_INSTALL.GET_APPLICATION_NAME
RETURN VARCHAR2;
Parameters
None.
Example
The following example returns the value of the application name value in the APEX_APPLICATION_INSTALL
package.
DECLARE
l_application_name varchar2(255);
BEGIN
l_application_name := apex_application_install.get_application_name;
END;
See Also:
Parent topic: APEX_APPLICATION_INSTALL