English 中文(简体)
HL7 检索数据的信息类型
原标题:HL7 message type for retrieve data
  • 时间:2012-04-04 10:02:39
  •  标签:
  • xml
  • hl7

I m working on a HL7 system and the client want a HL7 message for retrieve glucommeters data. I will provide it in XML format from an external application.

What type of HL7 message should i use?

问题回答

有许多变量影响这一问题的答案。 你们是否使用HL7 v2或 v3? 如果是第3号,答案可能取决于你所回去的国家。

For example, in Canada, using HL7 v3, a glucommeter reading is probably considered to be a basic observation, and you d probably use a Patient Basic Observation Query (REPC_IN000054CA) to access a reading that had previously been taken. Or a Record Patient Basic Observation Request message (REPC_IN000051CA) to record a new measure.

由于你可能使用HL7版本2.xx(相当于世界其他地方的99.99%)。 你想要使用的信息类型非常可能,非常可能。 不要让“未经许可”的ool子,这也是用于所有拉巴结果、病理学结果、放射结果等的相同信息类型。

注意这一信息类型(MSH Field 9 Part1)。 该电文(MSH Field 9 Part 2)通常为BLANK或R01的此类电文。

Hope this helps you.





相关问题
how to represent it in dtd?

I have two element action and guid. guid is a required field when action is add. but when action is del it will not appear in file. How to represent this in dtd ?

.Net application configuration add xml-data

I need to add xml-content to my application configuration file. Is there a way to add it directly to the appSettings section or do I need to implement a configSection? Is it possible to add the xml ...

XStream serializing collections

I have a class structure that I would like to serialize with Xstream. The root class contains a collection of other objects (of varying types). I would like to only serialize part of the objects that ...

MS Word splits words in its XML format

I have a Word 2003 document saved as a XML in WordProcessingML format. It contains few placeholders which will be dynamically replaced by an appropriate content. But, the problem is that Word ...

Merging an XML file with a list of changes

I have two XML files that are generated by another application I have no control over. The first is a settings file, and the second is a list of changes that should be applied to the first. Main ...

How do I check if a node has no siblings?

I have a org.w3c.dom.Node object. I would like to see if it has any other siblings. Here s what I have tried: Node sibling = node.getNextSibling(); if(sibling == null) return true; else ...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

热门标签