BATCH

BATCH — a named set of processing actions and record retrieval set

Synopsis

Content model

BATCH ::=
(TITLE?, DESC?, ACTION?, CRITERIA?)

Attributes

NameTypeDefaultDescription
nameCDATA 

The name of the batch. The name must be unique within the enclosing BATCHLIST.

Description

Parents

These elements contain BATCH: BATCHLIST

Children

The following elements occur in BATCH: TITLE , DESC , ACTION , CRITERIA .

Examples

Example 6.30. A simple BATCH that logs all messages generated by the msgIllegalBP edit check when applied to level 1, plate 2 records

<BATCH name="checkBP">
    <TITLE>Check systolic and diastolic blood pressure readings</TITLE>
    <ACTION><LOG which="msg" /></APPLY>
    <CRITERIA>
        <EDIT>msgIllegalBP</EDIT>
        <LEVEL include="1" />
        <PLATE include="2" />
    </CRITERIA>
</BATCH>