Home > APEX_UTIL > SAVEKEY_NUM Function
Previous |
Next |
This function sets a package variable (wwv_flow_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
Table: SAVEKEY_NUM Parameters describes the parameters available in the SAVEKEY_NUM
procedure.
Example
The following example shows how to use the SAVEKEY_NUM
function to set the wwv_flow_utilities.g_val_num
package variable to the value of 10
.
DECLARE VAL NUMBER; BEGIN VAL := APEX_UTIL.SAVEKEY_NUM(p_val => 10); END;