A script-enabled browser is required for this page to function properly.

SRW.GET_VALUE built-in function

This function returns the value of the specified column at runtime indirectly. This method of obtaining a column value is useful if you are writing business logic in a PL/SQL library but need to obtain report values directly. Instead of using :col_name, the user can use SRW.GET_VALUE(col_ name) to obtain the value of a column.

This function is equivalent to the Oracle Forms Developer NAME_ IN built-in.

Syntax


SRW.GET_VALUE (col_name,fmt_msk) RETURN VARCHAR;

Parameters

Description

col_name

VARCHAR

fmt_msk

VARCHAR

Example

Suppose you want to obtain report values directly for use :


SRW.GET_VALUE(':ENAME')

See also

About the Reports Builder built-in package (SRW)

SRW built-in package