-4

I need to get some information about patient from HL7Message V2.4(Or V2.3, V2.3.1), How do i get these? i need these; Filenumber, recorddate, department name, doctor, father name, complaint, diagnosis info and diagnosis date, etc.

someone
  • 1,195
  • 1
  • 7
  • 6
  • 1
    You can find location data in the PV1 segment, diagnosis data in the DG1 segment a.s.o – sqlab Feb 12 '14 at 12:59
  • You might try a freely available tool, or some documentation, such as http://sourceforge.net/projects/hl7inspector/ – Scott Hoffman Feb 12 '14 at 13:01
  • Could you please put your requirement in the question itself, otherwise this question will keep on recieving downvotes. – Sid Feb 12 '14 at 13:43

2 Answers2

1

Just check the relevant fields of the PID segment, especially

PID/5 Patient Name  
PID/7 Date/Time of Birth  
PID/8 Sex  
PID/11 Patient Adress
PID/..
 a.s.o

You will find location data in the PV1 segment.
All the doctors should be in PV1 too.
Diagnosis data is in the DG1 segment.
Fathers name could be in NK1.

sqlab
  • 6,287
  • 1
  • 11
  • 29
  • thanx for answer but i've got that informations, i need other informations Filenumber, recorddate, department, doctor, father name, complaint, diagnosis info and diagnosis date,etc. – someone Feb 12 '14 at 12:50
  • Father name? Seriously. You can get it if father happens to be an insurance holder or gurantor to patient. – Sid Feb 12 '14 at 13:42
  • No, you can get fathers name in NK1 with relationship – sqlab Feb 12 '14 at 13:44
  • yeah sorry forget about that! :) – Sid Feb 12 '14 at 13:45
  • thanx a lot sqlab, i've found it. And thanx for advice, Scott Hoffman but hl7inspector is not useful for me, i am using 7Edit for formatting HL7 message – someone Feb 12 '14 at 14:14
1

You might be refering to certain terms in your own language. As far as I can break down your terms below is a list for your requirements.

File number :

PID.18 Patient account number, thats where the filenumber goes. If filenumber is treated as patient IDs then its either PID.2 or PID.3

Father name :

in NK1.2 or GT1.3 or IN1.16 segment, if relation ship is established. That is, if NK1.3,GT1.11 or IN1.17 code suggest it is a father son relationship.

Department :

PV1.3.1 -point of care in an ADT message or in the LDP segment in LDP.2 in an MFN message.

Doctor:

PV1.7 Attending provider.

PV1.8 referring provider.

PV1.52 Auxilliary Provider.

OBR.16 Ordering provider.

Diagnosis Information:

DG1 segment

DG1.3 - Code

DG1.5 - Date and time

You can find more documentation on this link

Sid
  • 928
  • 7
  • 26
  • That should be **PV1/7 Attending Doctor** , **PV1/8 Referring Doctor**, and **PV1/9 Consulting Doctor** and not provider – sqlab Feb 12 '14 at 14:42
  • I doubt, that **LDP** segments are used in messages with patient data. Even your link talks about Master File Notifikation messages. – sqlab Feb 12 '14 at 14:50
  • They both mean the same thing. Normally, what I have seen the word _provider_ been used instead of _doctor_. And yes I have mentioned about you r second comment as well :). – Sid Feb 12 '14 at 15:25