Previous |
Next |
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;