Referencing Parameters
In PL/SQL, you can reference and set the values of form parameters using bind variable syntax.
To reference a parameter:
- Preface the parameter name with the reserved word PARAMETER, as shown in
the following examples:
:PARAMETER.parameter_name := 'TOKYO';
Or
- :block.item := :PARAMETER.parameter_name;