SAS Institute. The Power to Know

SAS(R) Data Quality Server 9.2: Reference

space
Previous Page | Next Page

AUTOCALL Macros

%DQPUTLOC AUTOCALL Macro



Displays current information on a specified locale in the SAS log.
Requirement: At least one locale must be loaded into memory before this macro is called.
Tip: Specifying no parameters displays the full report for the default locale.

Syntax
Details
Example
See Also

Syntax

%DQPUTLOC(locale, <SHORT=0 | 1>, <PARSEDEFN=0 | 1)>

locale

specifies the locale of interest. The value can be a locale name in quotation marks or the name of a variable whose value is a locale name or an expression that evaluates to a locale name.

The specified locale must have been loaded into memory as part of the locale list (see Load and Unload Locales). If no value is specified, the default locale is used. The default locale is the first locale in the locale list.

SHORT= 0 | 1

(optional) shortens the length of the entry in the SAS log. Specify SHORT=1 to remove the descriptions of how the definitions are used. The default value is SHORT=0, which displays the descriptions of how the definitions are used.

PARSEDEFN = 0 | 1

(optional) lists with each gender analysis definition and each match definition the related parse definition, if such a parse definition exists. The default value PARSEDEFN=1 lists the related parse definition. PARSEDEFN=0 does not list the related parse definition.


Details

The %DQPUTLOC AUTOCALL macro displays the contents of the specified locale in the SAS log. Locale contents include all definitions, parse tokens, related functions, and the names of the parse definitions that are related to each match definition. Knowing the related parse definitions enables the creation of parsed character values (see DQPARSETOKENPUT Function) and the creation of match codes for parsed character values (see DQMATCHPARSED Function).

Load the specified locale into memory with %DQLOAD before you submit %DQPUTLOC.


Example

The following example displays in the SAS log the definitions, related parse definitions, and related SAS Data Quality Server functions for the ENUSA locale:

%dqputloc(enusa)


See Also

space
Previous Page | Next Page | Top of Page