DISPLAY FIELDGROUP command

From m204wiki
Jump to navigation Jump to search

Summary

Privileges
Any user
Function
Displays the definition of a field group in a Model 204 file

Syntax

DISPLAY FIELDGROUP [(display-option [,display-option])] {ALL | fieldgroupname [,fieldgroupname]...}

See the DISPLAY FIELD command for a description of the display options.

Example

The following example displays the field groups in POLICIES in alphabetical order:

IN POLICIES DISPLAY FIELDGROUP ALL CLAIM (FIELDGROUP VEHICLE) DRIVER () VEHICLE ()

Because the "container group" must be specified before its members, the previous command's output cannot be fed back into Model 204 to define the field groups in an empty file. Instead, use the DDL option with the display command:

IN POLICIES D FIELDGROUP (DDL) ALL *** DDL FOR FILE POLICIES *** DDL REQUEST DATE/TIME: 10.102 APR 12 12.34.01 DEFINE FIELDGROUP DRIVER - () DEFINE FIELDGROUP VEHICLE - () DEFINE FIELDGROUP CLAIM - (FIELDGROUP VEHICLE)

Usage notes

DISPLAY FIELDGROUP is available as of Model 204 version 7.5.