36.87 KEYVAL_NUM Function
This function gets the value of the package variable (apex_utilities.g_val_num) set by APEX_UTIL.SAVEKEY_NUM.
                  
Syntax
APEX_UTIL.KEYVAL_NUM
RETURN NUMBER;
Parameters
None
Example
The following example shows how to use the KEYVAL_NUM function to return the current value of the package variable apex_utilities.g_val_num.
                  
DECLARE
    VAL NUMBER;
BEGIN
    VAL := APEX_UTIL.KEYVAL_NUM;
END;
See Also:
Parent topic: APEX_UTIL