| EN(.GMVDATA,GMVIEN,GMVIB) |
This entry point returns either the internal or both
the internal and external values (pieces 1 and 2 respectively) for the
following fields of the FILE 120.5 entry selected:
GMVDATA(1)=.01 (DATE/TIME VITALS TAKEN)
GMVDATA(2)=.02 (PATIENT)
GMVDATA(3)=.03 (VITAL TYPE)
GMVDATA(4)=.04 (DATE/TIME VITALS ENTERED)
GMVDATA(5)=.05 (HOSPITAL LOCATION)
GMVDATA(6)=.06 (ENTERED BY)
GMVDATA(7)=1.2 (RATE)
GMVDATA(8)=1.4 (SUPPLEMENTAL O2)
GMVDATA(9)=2 (ENTERED IN ERROR)
GMVDATA(10)=3 (ERROR ENTERED BY)
GMVDATA(11,n)=4 (REASON ENTERED IN ERROR) <--multiple
GMVDATA(12,n)=5 (QUALIFIER) <--multiple
If the lookup failed then: GMVDATA(1)=-1^error text.
This is an example of returning internal values only. The array name is
GMVDATA which is passed by reference. The record number is 394.
> D EN^GMVPXRM(.GMVDATA,394,"I")
> ZW GMVDATA
> GMVDATA(1)=3020805.2324
> GMVDATA(2)=67
> GMVDATA(3)=2
> GMVDATA(4)=3020805.232531
> GMVDATA(5)=1
> GMVDATA(6)=547
> GMVDATA(7)=100.1
> GMVDATA(8)=
> GMVDATA(9)=1
> GMVDATA(10)=547
> GMVDATA(11,1)=4
> GMVDATA(12,1)=6
This is an example of returning internal and external values. The array name
is GMVDATA which is passed by reference. The record number is 394.
> D EN^GMVPXRM(.GMVDATA,394,"B")
> GMVDATA(1)=3020805.2324^AUG 05, 2002@23:24
> GMVDATA(2)=67^GMVTEST,PATIENTSIXTYSEVEN
> GMVDATA(3)=2^TEMPERATURE
> GMVDATA(4)=3020805.232531^AUG 05, 2002@23:25:31
> GMVDATA(5)=1^2AS
> GMVDATA(6)=547^GMVUSER,NURSEFIVEFOURSEVEN
> GMVDATA(7)=100.1^100.1
> GMVDATA(8)=^
> GMVDATA(9)=1^YES
> GMVDATA(10)=547^GMVUSER,NURSEFIVEFOURSEVEN
> GMVDATA(11,1)=4^INVALID RECORD
> GMVDATA(12,1)=6^ORAL
|
| VARIABLES |
TYPE |
VARIABLES DESCRIPTION |
.GMVDATA |
Both |
The first variable in the parameter list. It
specifies the name of the array to return the information in and is passed by
reference. This variable is required.
|
GMVIEN |
Input |
The second variable in the parameter list. It is the
internal entry number of the FILE 120.5 entry. It is required.
|
GMVIB |
Input |
The third variable in the parameter list. It is
optional.
Use an uppercase letter I (i.e., "I") to return only the internal values of
the entry.
Use an uppercase letter B (i.e., "B") to return both the internal and external
values of the entry. "B" is the default. If GMVIB is not "I" or "B", then "B"
is used.
|
|
VITALS |
This entry point is for use by the Clinical Reminders
package to re-index the ACR cross-reference nodes for FILE 120.5.
a) This entry point kills the ACR cross-reference nodes for FILE 120.5
i.e., ^PXRMINDX(120.5).
b) Re-builds the ACR cross-reference nodes.
c) Calls the Clinical Reminders package to generate a mail message
summarizing the rebuilding of the ACR cross-reference.
There are no input or output variables for this entry point.
|
|