Questions tagged [hl7-v2]

HL7 version 2.x messages are standardized structured multi-line text files using single character as delimiters. HL7 messages are used for exchanging elecronic health information.

156 questions
2
votes
1 answer

any HL7 V2 field related to equipment manufacturer or model?

Is there any HL7 V2 fields can be used to identify equipment and medical device manufacturer or model? In DICOM, there are some attributed such as "manufacturer", "model", "software" we can use to identify the vendor/model information of the device,…
E. Zh
  • 23
  • 3
2
votes
1 answer

Whats difference between HL7 v2.5 and v2.8

Whats difference between HL7 version 2.5 and 2.8. I searched on google, but couldn't get any good information on this. We need to migrate to 2.8, and wondering how much impact we would have because of this change.
Surbhit
  • 57
  • 2
2
votes
1 answer

Hapi encoding HL7 v2.7 message into xml using Hapi XML Parser

Hapi xml parser is giving following exception while encoding the HL7 v2.7 message using Hapi Xml Parser. ca.uhn.hl7v2.HL7Exception: Can't XML-encode a GenericMessage. Message must have a recognized structure. Below is my code snippet that i am…
umair yasin
  • 159
  • 1
  • 2
  • 16
2
votes
1 answer

HL7 SIU 2.5 specification - does it allow multiple patient?

I'm working with schedule part of HL7 (SIU v2.5), more precisely I'm working on implementing unsollicited messages from a filler application. The standard gives exemples of simple unsollicited messages (1 location resource, 1 personel resource and 1…
R. G
  • 257
  • 2
  • 14
2
votes
1 answer

Handling HL7 Reschedule events

I am parsing HL7 and populating an external calendar based on incoming messages. I'm stuck on rescheduling messages though. How do I tell from the below messages what to do? If patient X has 2 bookings, and wants to reschedule/cancel one of them,…
Blimey
  • 65
  • 6
2
votes
1 answer

hl7apy not displaying data with multiple OBX fields

I am trying to parse hl7 files using hl7apy i am having below hl7 sample sample : MSH|^~\&|XXXX|C|PRIORITYHEALTH|PRIORITYHEALTH|20080511103530||ORU^R01|Q335939501T337311002|P|2.3||| PID|1||94000000000^^^Priority…
animal
  • 994
  • 3
  • 13
  • 35
2
votes
3 answers

Validate timestamp in HL7 Schema?

I see the TS and DT data types in the default 2.3 schema:
user736893
2
votes
1 answer

How to ADD OBR to the HL7 message?

I am trying to generate the HL7 message using the Python library hl7apy, but when HL7 message is generate it does not gives the OBR segment in the output, please try to solve this query. The code is from hl7apy import core hl7 =…
Jeenit khatri
  • 318
  • 4
  • 19
2
votes
1 answer

What is the appointment date timezone in HL7 Scheduling SIU S12 request?

Currently I am working with the HL7 and mirth part for the new appointment booking. So when I parse the HL7 data in mirth for SIU S12 request, I am getting the date in YYYYMMDDHHmmss fomat in SCH category. Can any one have an idea about in which…
2
votes
1 answer

HAPI: Hl7 Parser do not separate segments, appending all data in one HL7 Segment

I am simply trying to create a HL7 V2.6 message by using HAPI API. I am using latest 2.2 API. When I try to print message, all data appending in one segment only. Here is my code- package com.psl; import ca.uhn.hl7v2.DefaultHapiContext; import…
2
votes
1 answer

How is NameSpaceID, universalID and UniversalID type used in HL7?

In hl7 messages the HD DataType consists of NameSpaceID, UniversalID and UniversalID Type. What do these different entities specify and how are they used? I mainly want to know what is NamespaceID in scope of an organization and when is it used?
2
votes
1 answer

Creating multiple versions of HL7 messages within a single application using Hapi

I am new to HL7 and Hapi. By reading hapi tutorials, I figured out how to support parsing of multiple versions of HL7 in a single application: http://hl7api.sourceforge.net/xref/ca/uhn/hl7v2/examples/HandlingMultipleVersions.html However, I am not…
rsnhah
  • 349
  • 4
  • 15
2
votes
1 answer

Is it possible to skip parsing some field in HAPI?

I am using Apache Camel, Mina2 and HAPI to receive HL7 v2 messages. I noticed that its taking lot of time to unmarshal and create Message object. And this time increases when I have larger message. My message has around 120 OBX segment and I am…
anupsth
  • 657
  • 1
  • 6
  • 18
2
votes
2 answers

Message Response Zombies occurring with errors Codes 0xC0C01B4C and 0xc0c016b5 no Orchestration

Consider the following message flow in BizTalk. We have several MLLP receive ports/locations setup receiving HL7v2 messages in one application. These ports each receive slightly different message types. Let's call this one RP1 In another application…
Bensonius
  • 1,501
  • 1
  • 15
  • 39
2
votes
2 answers

Nhapi Parsing Issue

I am new to Nhapi and using it to parse the HL7 message . The issue i am facing is i am parsing the ADT^A03 message but always i get the PV1 segment as null. I am attaching the Sample Message and my Code . Sample Message …
Himanshu
  • 67
  • 1
  • 2
  • 12
1 2
3
10 11