58.109 SAVEKEY_NUM Function
This function sets a package variable (apex_utilities.g_val_num) so that it can be retrieved using the function KEYVAL_NUM.
                  
Syntax
APEX_UTIL.SAVEKEY_NUM (
    p_val IN NUMBER )
RETURN NUMBER;Parameters
| Parameter | Description | 
|---|---|
| p_val | The numeric value to be saved. | 
Example
The following example shows how to use the SAVEKEY_NUM function to set the apex_utilities.g_val_num package variable to the value of 10.
                  
DECLARE
    VAL NUMBER;
BEGIN
    VAL := APEX_UTIL.SAVEKEY_NUM(p_val => 10);
END;See Also:
KEYVAL_NUM FunctionParent topic: APEX_UTIL