Previous Page | Next Page

Functions and CALL Routines

DQOPTSURFACE Function



Reveals or hides non-surfaced definitions.
Valid in: DATA step, PROC SQL, and SCL

Syntax
Arguments
Details
Example

Syntax

DQOPTSURFACE ('surface-definition')

Arguments

surface-definition

specifies the policy for the surface definitions.


Details

DQOPTSURFACE specifies whether the non-surfaced definitions are revealed or hidden. By default, non-surfaced definitions are hidden. Valid input values are as follows:

YES

reveals the non-surfaced definitions.

NO

hides the non-surfaced definitions.

The DQOPTSURFACE function returns the previous value of the surface definition policy.


Example

The following example specifies that non-surfaced definitions are revealed. The character value oldDEFAULT contains the value of the previous setting.

oldDefault=DQOPTSURFACE('YES');

Previous Page | Next Page | Top of Page