L |
Input |
(Required) String that evaluates to zero.
|
DIC |
Input |
(Required) Global root or file number, in the usual
format.
|
FLDS |
Input |
(Optional) The various fields to be printed.
|
BY |
Input |
(Optional) The fields by which the data is to be
sorted.
|
FR |
Input |
(Optional) The START WITH: values of the SORT BY
fields.
|
FR(n) |
Input |
|
TO |
Input |
(Optional) The GO TO: values of the SORT BY fields.
|
TO(n) |
Input |
(Optional) An alternate way to provide the GO TO:
values of the SORT BY fields.
|
DHD |
Input |
(Optional) The header desired for the output.
|
DIASKHD |
Input |
(Optional) Set to null to prompt user for a header.
|
DIPCRIT |
Input |
(Optional)Set to 1 to print SORT criteria on the
first page of the report.
|
PG |
Input |
(Optional) Starting page number.
|
DHIT |
Input |
(Optional) M code to execute after each entry is
printed.
|
DIOEND |
Input |
(Optional) M code to execute after the printout has
finished.
|
DIOBEG |
Input |
(Optional) M code to execute before the printout
starts.
|
DCOPIES |
Input |
(Optional) Number of copies to print (for SDP-type
devices).
|
IOP |
Input |
(Optional) Name of device to send output to.
|
DQTIME |
Input |
(Optional) Time to print, for queued printing.
|
DIS(0) |
Input |
(Optional) M code to screen out entries.
|
DIS(n) |
Input |
(Optional) Additional screens, "OR"-ed with each
other, "AND"-ed with the DIS(0) screen.
|
DISUPNO |
Input |
(Optional) Set to 1 to suppress output when no
records are found.
|
DISTOP |
Input |
(Optional) Set to 0 to prevent users from stopping
prints.
|
DISTOP("C") |
Input |
(Optional) M code to execute if a user stops the
print.
|
BY(0) |
Input |
(Optional; Required for BY(0) sorts) Set this
variable to an open global root. The open global root should be the static
part of a global; a list of record numbers must be stored at a descendant
subscript level.
|
L(0) |
Input |
(Optional; Required if BY(0) is set to an open global
root.)
Use L(0) to specify the number of dynamic subscript levels that exist beyond
the static global root, including the subscript level containing the list of
record numbers. The minimum value of L(0) is 1.
|
FR(0,n) |
Input |
(Optional) To select only a subset of records at a
given subscript level n, you can use FR(0,n) and/or TO(0,n). For n equal to
any of the 'n' dynamic sorting subscript levels in the global specified by
BY(0), you can set FR(0,n) to the sort-from value for that subscript level.
|
TO(0,n) |
Input |
(Optional) This variable contains the ending value
(the sort-to value) for any of the 'n' dynamic sorting subscripts in the
global specified by BY(0).
|
DISPAR(0,n) |
Input |
(Optional) Like the FR(0,n) and TO(0,n) variables,
this variable array can be set for any of the 'n' dynamic sorting subscripts
in the global specified by BY(0). This array allows you to create subheaders
for the sorting subscripts in the global.
|
DISPAR(0,n,'OUT') |
Input |
Note: 'OUT' should be "OUT".
(Optional) If a literal title is input to DISPAR(0,n) above, then you can also
enter MUMPS code to transform the value of the subscript from the global
before it is printed as a subheader. It acts like an output transform.
|