FMS Ticket Data Group

The "FMS Ticket" data group is used to send ticket data to FMS.

The "FMS Ticket" data group depends on one or more support data groups for its data. Support data groups are found in the supportDg element of your sample template. Mapping between "FMS Ticket" data group elements and FMS data items is within the ticketItems section of fmsMaps in the device template file. See FMS Ticket Data Items.

Note: For ticket start date and ticket end date information for the "FMS Ticket" data group, the support data group must contain deids named SDate and EDate.

For more information, see the following subsections:

For more information about working with device template files, see Device Template Files.

Example

<FmsTicket niceName="FMS Ticket" baseOrd="1" maxCnt=2">

<supportDg required="false">

<HistTicket required="true"/>

</supportDg>

<dgElements/>

<uccRecvParms>

<SDate desc="Start Device Date/Time" required="true"/>

<EDate desc="End Device Date/Time" required="true"/>

</uccRecvParms>

</FmsTicket>

Structure and Components

<!-- Requires at least one support data group. Support data groups are user configurable for this EIE. Exactly what support data group(s) you choose depends on your unique setup and needs. -->

<FmsTicket niceName="FMS Ticket" baseOrd="1" maxCnt="s">

<supportDg>

<SupportDataGroup/>

</supportDg>

<dgElements/>

<uccRecvParms>

<UISParameter/>

</uccRecvParms>

</FmsTicket>

To Create a Data Group

  1. Using a text editor or XML editor, open the device template file to which you want to add data groups.
  2. Define a new data group.
    1. Define a supportDg element.
    2. Define all support data groups from which you require data.
    3. Define a dgElements element.
    4. Define a uccRecvParms element in the data group.
    5. Define one or more RecParmName elements.
  3. Define any other required data groups.
  4. Validate and load your template.

Back to top