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

GMVUTL8.m

Go to the documentation of this file.
  1. GMVUTL8 ;HIOFO/DS,FT-RPC API TO RETURN ALL VITALS/CATEGORIES/QUALIFIERS ;3/31/05 13:34
  1. ;;5.0;GEN. MED. REC. - VITALS;**1,3**;Oct 31, 2002
  1. ;
  1. ; This routine uses the following IAs:
  1. ; #2263 - ^XPAR calls (Supported)
  1. ; #3227 - ^NURAPI calls (private)
  1. ;
  1. ; This routine supports the following IAs:
  1. ; #4653 - QUALIFRS & SUPO2 entry points (private)
  1. ; #4420 - GMV DLL VERSION is called at DLL (private)
  1. ; #4354 - GMV GET CATEGORY IEN is called at CATEGORY (private)
  1. ; #4357 - GMV GET VITAL TYPE IEN is called at TYPE (private)
  1. ;
  1. APTLIST(ARRAY,LOC) ; Returns a list of active patients for a nursing
  1. ; location in the array specified. [RPC entry point]
  1. ; input: LOC - (Required) NURS LOCATION file (#211.4) ien
  1. ; input: ARRAY - (Required) Name of the array to return entries in
  1. ; output: ARRAY - Subscripted by sequential number with DFN in first
  1. ; piece and patient name in second piece.
  1. ; example: ARRAY(#)=DFN^patient name^SSN^DOB^SEX AND AGE
  1. ; ^ATTENDING^VETERAN^INTERNAL DATE/TIME DECEASED
  1. ; ^EXTERNAL DATE/TIME DECEASED
  1. ;
  1. I $G(LOC)="" S ARRAY(1)=-1
  1. N DFN,GMVARRAY,GMVCNT,GMVPAT,PATNAME
  1. D APTLIST^NURAPI(LOC,.GMVARRAY)
  1. I $G(GMVARRAY(1))'>0 S ARRAY(1)=-1 Q
  1. S GMVCNT=0
  1. F S GMVCNT=$O(GMVARRAY(GMVCNT)) Q:'GMVCNT D
  1. .S DFN=$P(GMVARRAY(GMVCNT),U,1)
  1. .Q:'DFN
  1. .S PATNAME=$P(GMVARRAY(GMVCNT),U,2)
  1. .D PTINFO^GMVUTL3(.GMVPAT,DFN)
  1. .S ARRAY(GMVCNT)=DFN_U_PATNAME_U_GMVPAT
  1. .Q
  1. Q
  1. TYPE(RESULT,GMVTYPE) ;GMV GET VITAL TYPE IEN [RPC entry point]
  1. ; Input:
  1. ; RESULT = variable name to hold result
  1. ; GMVTYPE = Name of Vital Type (from FILE 120.51) (e.g., WEIGHT)
  1. ; Output: Returns the IEN if GMVTYPE exists in FILE 120.51
  1. ; else returns -1
  1. ;
  1. I GMVTYPE="" S RESULT=-1 Q
  1. S RESULT=+$O(^GMRD(120.51,"B",GMVTYPE,0))
  1. Q
  1. CATEGORY(RESULT,GMVCAT) ;GMV GET CATEGORY IEN [RPC entry point]
  1. ; Input
  1. ; RESULT = variable name to hold result
  1. ; GMVCAT = Name of Category (from FILE 120.53) (e.g., METHOD)
  1. ; Output: Returns the IEN if GMVTYPE exists in FILE 120.53
  1. ; else returns -1
  1. I GMVCAT="" S RESULT=-1 Q
  1. S RESULT=+$O(^GMRD(120.53,"B",GMVCAT,0))
  1. Q
  1. QUALIFER(RESULT,GMVQUAL) ;Return IEN of Qualifier name
  1. ; Input:
  1. ; RESULT = variable name to hold result
  1. ; GMVQUAL = Name of Qualifier (from FILE 120.52) (e.g., ORAL)
  1. ; Output: Returns the IEN if GMVQUAL exists in FILE 120.52
  1. ; else returns -1
  1. ;
  1. I GMVQUAL="" S RESULT=-1 Q
  1. S RESULT=+$O(^GMRD(120.52,"B",GMVQUAL,0))
  1. Q
  1. VITALIEN() ;Returns the Vital Type IENS in a list separated by commas.
  1. ; ex: ",8,9,21,20,5,3,22,1,2,19,"
  1. ;
  1. N GMVABB,GMVIEN,GMVLIST
  1. S GMVLIST=""
  1. F GMVABB="BP","T","R","P","HT","WT","CVP","CG","PO2","PN" D
  1. .S GMVIEN=$O(^GMRD(120.51,"C",GMVABB,0))
  1. .Q:'GMVIEN
  1. .S GMVLIST=GMVLIST_","_GMVIEN
  1. .Q
  1. I $L(GMVLIST)'="," S GMVLIST=GMVLIST_","
  1. Q GMVLIST
  1. ;
  1. QUALIFRS(VIEN) ;Function to return vitals qualifiers text
  1. ; VIEN is the FILE 120.5 IEN
  1. ; Returns the qualifiers in a string of text
  1. ; e.g., Actual,Standing
  1. ;
  1. N QUALS,VQIEN,QNAME
  1. S QUALS=""
  1. I 'VIEN Q QUALS
  1. S VQIEN=0
  1. F S VQIEN=$O(^GMR(120.5,VIEN,5,"B",VQIEN)) Q:'VQIEN D
  1. .S QNAME=$P($G(^GMRD(120.52,+VQIEN,0)),U,1)
  1. .I QNAME]"" S QUALS=QUALS_QNAME_","
  1. .Q
  1. I $L(QUALS)>0 S QUALS=$E(QUALS,1,$L(QUALS)-1)
  1. Q QUALS
  1. SUPO2(VIEN) ;Function to return the Supplemental O2 value
  1. ; VIEN is the FILE 120.5 IEN
  1. ; Returns the Supplemental O2 value (#1.4)
  1. ; e.g., 2.0 l/min 90%
  1. ;
  1. S VIEN=+$G(VIEN)
  1. Q $P($G(^GMR(120.5,VIEN,0)),U,10)
  1. ;
  1. DLL(RESULT,GMVX) ; Entry for [GMV DLL VERSION] RPC. Returns DLL version check
  1. ; RESULT = variable name to return check
  1. ; GMVX = dll name and version date/time
  1. ; Returns yes or no
  1. S RESULT=$$GET^XPAR("SYS","GMV DLL VERSION",GMVX,"E")
  1. S:RESULT="" RESULT="NO"
  1. Q
  1. ;