Record Map to Transform an HL7 message to | separated string / stream
Is it possible to transform selected fields from HL7 message to | separated string or stream that can be inserted to a DB using Record Map?
Discussion (0)0
Comments
Record Map is used to parse rows from CSV files into Objectscript objects, you can use DTLs or by code directly to get the fields from the HL7 message and save into a string variable. Something like:
set myString = request.GetValueAt("PID:3.4.1")In this case request is an Enslib.HL7.Message variable.
Yes, it is possible.