Previous Topic: ASUSPEND Keyword—Remove SuspensionNext Topic: ATTR Keyword with the RDT—Resource Attributes


ATTR Keyword with the FDT—FDT Field Attributes

Valid on z/OS, z/VSE, and z/VM.

Use the ATTR keyword to add or replace attributes to a field in the FDT Record.

This keyword has the following format:

TSS ADDTO(FDT) FDTNAME(field name) 
               FDTCODE(hex code)
               MAXLEN(40)
               ATTR(MIXED,NONDISP,attribute)
MIXED

Allows display of mixed case data for a field in the FDT Record. If ATTR(MIXED) is not given, the information is added to the user in uppercase.

NONDISP

Prohibits display of a field when an administrator issues a TSS LIST command on the ACID. The data can be extracted or modified using the Application Interface or the RACROUTE macro, but not displayed using TSS LIST.

This keyword is used with:

Example: ATTR Keyword

This example adds $TAX information to an ACID in mixed case:

TSS ADDTO(FDT) FDTNAME($TAX)
               FDTCODE(44)
               MAXLEN(40)
               ATTR(MIXED)