Home > APEX_UTIL > SAVEKEY_VC2 Function
Previous |
Next |
This function sets a package variable (wwv_flow_utilities.g_val_vc2
) so that it can be retrieved using the function KEYVAL_VC2
.
Syntax
APEX_UTIL.SAVEKEY_VC2( p_val IN VARCHAR2) RETURN VARCHAR2;
Parameters
Table: SAVEKEY_VC2 Parameters describes the parameters available in the SAVEKEY_VC2
function.
Example
The following example shows how to use the SAVEKEY_VC2
function to set the wwv_flow_utilities.g_val_vc2
package variable to the value of 'XXX'.
DECLARE VAL VARCHAR2(4000); BEGIN VAL := APEX_UTIL.SAVEKEY_VC2(p_val => 'XXX'); END;