| RESULTS(.RESULT,IEN) |
Returns any report text for a pap smear, mammogram or
breast ultrasound for the WV PROCEDURE file (#790.1) entry identified.
Output:
^TMP("WV RPT",$J,n,0) = report text
where n is a sequential number starting with 1.
If the entry is not found, the first node of the global array is returned with
a -1 in the first piece, piece 2 will be null and piece 3 will contain an
error message:
^TMP("WV RPT",557902502,1,0) = -1^^Entry not found.
Example of report text found:
S IEN=315
D RESULTS(.RESULT,IEN) ZW RESULT
RESULT=^TMP("WV RPT",557902502)
D ^%G
^TMP("WV RPT",557902502,1,0) = DAY-CASE #: 032103-1515
^TMP("WV RPT",557902502,2,0) = EXAM DATE/TIME: MAR 21, 2003@13:30
^TMP("WV RPT",557902502,3,0) = VERIFYING PHYSICIAN: TAYLOR,FRANK
^TMP("WV RPT",557902502,4,0) = PROCEDURE: MAMMOGRAM SCREENING
...
...
|
| VARIABLES |
TYPE |
VARIABLES DESCRIPTION |
RESULT |
Both |
Array name that will identify the global reference
containing the report text (Required).
|
IEN |
Input |
The internal entry number of the FILE 790.1 entry to
return data on (Required).
|
|