This function sets a package variable (apex_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 35-88 SAVEKEY_VC2 Parameters
Parameter | Description |
---|---|
|
The is the VARCHAR2 value to be saved. |
Example
The following example shows how to use the SAVEKEY_VC2
function to set the apex_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;
See Also:
Parent topic: APEX_UTIL