59.49 GET_EDITION Function
This function returns the edition for the current page view.
Syntax
APEX_UTIL.GET_EDITION
RETURN VARCHAR2;
Parameters
None.
Example
The following example shows how to use the GET_EDITION
function. It returns the edition name for the current page view into a local variable.
DECLARE
VAL VARCHAR2(30);
BEGIN
VAL := APEX_UTIL.GET_EDITION;
END;
Parent topic: APEX_UTIL