iNTERFACEWARE Products Manual > Learning Center > Tutorials and Sample Scenarios > Working With Other Message Formats > Processing Non-HL7 Messages Using Iguana and Chameleon > Defining the Table |
![]() ![]() |
Looking for Iguana v.5 or v.6? Learn More or see the Help Center.
Now that you have a message definition, the next step is to create a table definition. This table definition should match the database table to which data is to be written, as this definition tells Iguana what fields need to be written out. To do this:
![]() This example assumes that every field that is provided in the incoming ZSU segment also needs to be written to the database table. For this reason, the table definition closely resembles the ZSU segment definition that you created in Creating the VMD File and Segments. You will notice only two differences:
The MessageControlID field contains the unique message ID for this message. In the Segment Inbound Script that you created for the MSH segment (which is discussed in Writing the Global Inbound Script), you defined a variable named MessageControlID that contains this message ID. Here, all you need to do is write a Table Inbound Script that sets the value of the MessageControlID table field to the value of the MessageControlID variable. To do this:
The MessageLogID field will contain the unique message log ID that is generated when Iguana processes the message and stores it in its logs. To obtain this message log ID, supply the following Python code as the Table Inbound Script for this field:
This sets the value of the MessageLogID field to the message log ID for this message. (For more information on setting the message log ID in a VMD file, see Using the Message Log ID in VMD Files.) You can also use Table Inbound Scripts to transform incoming message data to the format that your database table is expecting. In this example, Table Inbound Scripts have been written for the following fields:
Now that you have defined the table, the next step is to create the message grammar that will map fields in the custom ZSD segment to fields in the table. |