Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: MDCEVN

MDCEVN.m

Go to the documentation of this file.
  1. MDCEVN ;HINES OIFO/DP/BJ/TJ - Wrapper to create HL7 EVN segment;30 May 2006
  1. ;;1.0;CLINICAL PROCEDURES;**16,12,23**;Apr 01, 2004;Build 281
  1. ;Per VHA Directive 2004-038, this routine should not be modified.
  1. ;
  1. ; This routine uses the following IAs:
  1. ; # 2050 - $$EZBLD^DIALOG() FileMan (supported)
  1. ; # 417 - ^DG(40.8; node 0, piece 7 Registration (controlled, subscribed)
  1. ; # 3016 - $$EVN^VAFHLEVN call Registration (controlled, subscribed)
  1. ; #10112 - $$SITE^VASITE() call Registration (supported)
  1. ; # 2171 - $$STA^XUAF4() call Kernel (supported)
  1. ;
  1. VALID ;;HL7 MESSAGE BUILDER
  1. ;
  1. Q
  1. ;
  1. EN(IBEVENT,REC,EVNSEG,ERR) ;
  1. ; REC = ^IBBAA(375,n array
  1. ; EVNSEG = Output EVN segment
  1. ; ERR = Error message
  1. ;
  1. N FS,PATLOC,FIL408D0,FIL4D0,FIL44D0,MDCERRAY,STATNO
  1. S FS=HL("FS")
  1. K ERR
  1. S EVNSEG=$$EVN^VAFHLEVN(IBEVENT,"","") ; using OTS
  1. ;
  1. Q:'$D(EVNSEG)
  1. I $P(EVNSEG,FS,2)'=IBEVENT D Q
  1. .S MDCERRAY(1)="Event Type Code EVN.1",MDCERRAY(2)="EVN",MDCERRAY(3)=REC
  1. .S ERR=$$EZBLD^DIALOG(7040020.004,.MDCERRAY)
  1. .Q
  1. I +$P(EVNSEG,FS,3)'>0 D Q
  1. .S MDCERRAY(1)="Recorded Date/Time EVN.2.1",MDCERRAY(2)="EVN",MDCERRAY(3)=REC
  1. .S ERR=$$EZBLD^DIALOG(7040020.004,.MDCERRAY)
  1. .Q
  1. ; Event Facility EVN.7.1 - START WITH 375,13
  1. S FIL408D0=+$P($G(REC(13)),U,1)
  1. I FIL408D0>0 S FIL4D0=+$P($G(^DG(40.8,FIL408D0,0)),U,7) ; Medical Center Division
  1. I +$G(FIL4D0)>0 S STATNO=$$STA^XUAF4(FIL4D0) ; Institution File
  1. I $G(STATNO)]"" S $P(EVNSEG,FS,8)=STATNO Q
  1. ;
  1. ; no hit, try 375,1.03 pointer to Hospital Location File #44
  1. S FIL44D0=+$P($G(REC("PV1")),U,3)
  1. NEW DIERR
  1. I FIL44D0>0 N DIERR S FIL408D0=$$GET1^DIQ(44,FIL44D0_",",3.5,"I") ; Hospital Location File
  1. I FIL408D0>0 S FIL4D0=+$P($G(^DG(40.8,0,FIL408D0,0)),U,7) ; Medical Center Division
  1. I +$G(FIL4D0)>0 S STATNO=$$STA^XUAF4(FIL4D0) ; Institution File
  1. I $G(STATNO)]"" S $P(EVNSEG,FS,8)=STATNO Q
  1. ;
  1. ; no hit, try $$SITE^VASITE()
  1. N IBBVSITE
  1. S IBBVSITE=+$$SITE^VASITE()
  1. I IBBVSITE>0 S $P(EVNSEG,FS,8)=IBBVSITE Q
  1. ;
  1. ; still no hit, error
  1. S MDCERRAY(1)="Event Facility EVN.7.1",MDCERRAY(2)="EVN",MDCERRAY(3)=REC
  1. S ERR=$$EZBLD^DIALOG(7040020.004,.MDCERRAY)
  1. Q
  1. ;