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
0
votes
2 answers

C# strongly typed properties

I posted a question but need it clarified. I'm a beginner. I'm not sure what the use of the term "strongly typed properties" means in this context? The syntax offered by the responder to my original post is what I'm after, but when I web search for…
Nimbocrux
  • 509
  • 2
  • 10
  • 27
0
votes
0 answers

Object design decision on complicated object C# - HL7 message

I'm attempting to create an object of an HL7 message by parsing a raw text string. The object model is a follows. The object I want to create would be a representation of this, allowing calling methods to access information based on indexes. If…
Nimbocrux
  • 509
  • 2
  • 10
  • 27
0
votes
0 answers

Problems to Get Data using Tesers on nHapi hl7

Hello again dear community, i am using " Tersers " to get data from an hl7 v2 messeage, its a ADT_A08 messeage. Well the thing is that, im trying to get the PatientName with this: string test = terser.Get("PID-5-1"); and that return me nothing,…
0
votes
1 answer

Why my mirth code is not capturing code from each DG1 segment?

I have written this code in mirth to capture code from each DG1 segment but it captures 'undefined' and inserts in DB for each (seg in msg.children()){ if(seg.name().toString()=="DG1"){ var vSET_ID =msg['DG1']['DG1.1'].toString(); …
0
votes
1 answer

How do i convert JSON to QPB_Q11 object using java

We have below json file. we need to convert it into QBP_Q11 java object using java. we are able to convert from hl7 message to QBP_Qll object but not able to do from json input. Is there anyway to convert json to hl7? { "QBP_Q11": { "MSH": { …
Damodar
  • 53
  • 12
0
votes
1 answer

mirth connect - post db query executes only after checking pre query send status -Error/sent? Advice required

Basically, I am new to mirth connect. Please give me advice on this. When I use something like this on Run Post-Process script: try { dbConn =…
0
votes
1 answer

HL7 parsing using XML as message definition

I have wrote a simple HL7 message parser which is capable of parsing any message type. What it can't do is to validate the message. The result of the message parsing is a tree which is easily traversable. Now I want to improve the parser. I want it…
svager
  • 769
  • 5
  • 13
  • 32
0
votes
1 answer

HL7 Encoding/Separator Characters

In regards to HL7 pipe-delimited data, how exactly do the encoding characters (|^~\&) work? Is the following example of fields, field repetitions, components and their sub-components correct when parsing raw HL7 data?…
Reynel
  • 43
  • 4
0
votes
1 answer

Semantics of an HL7 enabled Point of Care device - is this the right way to do it?

I am implementing automated HL7v2.7 reporting of observations on a point of care device. The way this works is by sending an "ORU^R30 Unsolicited Point-Of-Care Observation Message without Existing Order - Place an Order" message to what I'm assuming…
Zabitz
  • 35
  • 7
0
votes
1 answer

Trouble grabbing understanding data elements hL7

I am having a brain freeze for some reason understanding an HL7 concept. And would appreciate some assistance. Basically I need to grab data from the 9th component of a PID 3 and I don't have a sample message. Per the HL7 SPEC (for version 2.5.1…
Villumanati
  • 553
  • 2
  • 8
  • 17
0
votes
0 answers

BizTalk Map HL7 patient identification PID 2.4 to 2.3.1

I've a requirement where if incoming message have only 1 medicare (MC) info, then output it as it is from 2.4 to 2.3.1, if more than 1 then output the one with no or greater expiration date…
Ronnie
  • 11
  • 5
0
votes
2 answers

HL7 with Mirth: How to avoid Segments with double sequence numbers?

Using the Mirth Connect Interoperability server I'm trying to construct a message in HL7. I'm trying to add a number of custom OBX segments to the message, but Mirth is giving me a hard time. In my template I've got a line saying…
kramer65
  • 50,427
  • 120
  • 308
  • 488
0
votes
1 answer

nHapi GT1 segment for DFT_P03 returning empty collection

I am stumped on the following Sample message: MSH|^~\&|CWM|MySender|UNKNOWN|UNKNOWN|20160711080000||DFT^P03|976503|P|2.5| EVN|P03|20160711080000 PID||12345^^^RIS|||Test^Patient||192532325445|F|||27 Lotus street…
Crudler
  • 2,194
  • 3
  • 30
  • 57
0
votes
1 answer

How to connect two mirth systems through TCP sender and listener

I m new to mirth connect and want to know how to connect two mirth machines . im taking data(HL7 message) from database in source on my machine and have to send that data(HL7 message) to another mirth machine on different user .Kindly pray tell the…
tarun gupta
  • 1
  • 1
  • 1
0
votes
2 answers

Better Compatible version of Hl7, v2 or v3?

I am going to implement a generic HMIS with true implementation of HL7. I have studied all the advantages and disadvantages of both versions of HL7 i.e v2 and v3. But still the confusion exists that which version is better to go with implementation…