DISPLAY FIELDGROUP command: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "==Summary== <dl> <dt>Privileges <dd>Any user <dt>Function <dd>Displays the definition of a field group in a <var class="product">Model 204</var> file </dl> ==Syntax== <p ...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 35: Line 35:
==Usage notes==
==Usage notes==
DISPLAY FIELDGROUP is available as of Model 204 version 7.5.
DISPLAY FIELDGROUP is available as of Model 204 version 7.5.
[[Category: User commands]]
[[Category:Commands]]

Latest revision as of 16:19, 22 March 2017

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.