user3621700
user3621700

Reputation: 21

HL7 ADT^A03 - End Visit Notification

I just wanted to know When we send a End Visit Notification as Hl7 Message ,Can we include the below segments in the Hl7 Message ( ADT^A03) when we send End Visit Notification ?

And also I just wanted to know, Is there a limit on using the no of segments in a single HL7 Message?

Any help with this really appreciated it?

Thanks Ramana

Upvotes: 2

Views: 1326

Answers (2)

Nick Radov
Nick Radov

Reputation: 431

You can download whichever version of the HL7 V2.x messaging standard you are using and check the exact definition of the A03 trigger event in chapter 3, section 3.3.3. It will show you exactly which segment types are allowed in the ADT_A03 message structure.

Upvotes: 0

sqlab
sqlab

Reputation: 6436

As the HL7 messages are open according the specification, you can in theory add as many segments or segment groups after you fulfilled at least the minimal required segments for an ADT^A03 messages as the standard requests.

MSH     Message Header
EVN     Event Type
PID     Patient Identification
PV1     Patient Visit

HL7 says, that you should ignore fields or segments after the defined, if you do not know them . So there is no limit.
But many communication systems or receivers are limited either by physical (receive stack) or other reasons (strict defined message templates). So in practice you have to come to an agreement with your communication partners.

Upvotes: 1

Related Questions