-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathLAB_AUTORELEASE_1_0.KIDs
More file actions
15680 lines (15339 loc) · 432 KB
/
LAB_AUTORELEASE_1_0.KIDs
File metadata and controls
15680 lines (15339 loc) · 432 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
KIDS Distribution saved on Jun 28, 2016@09:38:27
LAB AUTO-RELEASE 1.0
**KIDS**:LA*5.2*88^LR*5.2*458^
**INSTALL NAME**
LA*5.2*88
"BLD",9773,0)
LA*5.2*88^AUTOMATED LAB INSTRUMENTS^0^3160628^y
"BLD",9773,1,0)
^^209^209^3160628^
"BLD",9773,1,1,0)
Associated Patches: (v)LA*5.2*80 <<= must be installed BEFORE `LA*5.2*88'
"BLD",9773,1,2,0)
(v)LA*5.2*84 <<= must be installed BEFORE `LA*5.2*88'
"BLD",9773,1,3,0)
(v)LA*5.2*85 <<= must be installed BEFORE `LA*5.2*88'
"BLD",9773,1,4,0)
"BLD",9773,1,5,0)
Subject: AUTOVERIFICATION
"BLD",9773,1,6,0)
"BLD",9773,1,7,0)
Category: ROUTINE
"BLD",9773,1,8,0)
ENHANCEMENT
"BLD",9773,1,9,0)
DATA DICTIONARY
"BLD",9773,1,10,0)
"BLD",9773,1,11,0)
Description:
"BLD",9773,1,12,0)
===========
"BLD",9773,1,13,0)
The build for this patch is distributed as part of a multi-package build
"BLD",9773,1,14,0)
that contains LR*5.2*458 and LA*5.2*88. This contains functionality to
"BLD",9773,1,15,0)
enable Auto Verification and Auto Release of lab normal lab results and
"BLD",9773,1,16,0)
was initially developed at the Kansas City VAMC. This new process
"BLD",9773,1,17,0)
involves automatic review and release of test results based on a
"BLD",9773,1,18,0)
lab-established set of boundaries, also referred as rules, rule sets, and
"BLD",9773,1,19,0)
algorithms. Lab results that are in a "normal" range, as pre-determined
"BLD",9773,1,20,0)
by the laboratory, will transmit directly from the middleware to VistA
"BLD",9773,1,21,0)
lab files and on to Computerized Patient Record System (CPRS) without the
"BLD",9773,1,22,0)
intermediate step of requiring a lab technologist to manually review and
"BLD",9773,1,23,0)
sign off on these normal lab results. This process will eliminate the
"BLD",9773,1,24,0)
need for a qualified technologist to manually approve all "normal"
"BLD",9773,1,25,0)
results before those results are filed in VistA Lab files and available
"BLD",9773,1,26,0)
for clinicians to view in CPRS.
"BLD",9773,1,27,0)
"BLD",9773,1,28,0)
Each VAMC site will determine which instruments will use this
"BLD",9773,1,29,0)
functionality as it can set up on an instrument by instrument basis.
"BLD",9773,1,30,0)
Essentially VistA Lab instruments are set up as either being available
"BLD",9773,1,31,0)
for auto verification or not available for auto verification. If an
"BLD",9773,1,32,0)
instrument is set up for auto verification, then a lab result passing the
"BLD",9773,1,33,0)
rule set will be filed by the middleware in VistA lab files and available
"BLD",9773,1,34,0)
in CPRS and a lab result that cannot pass the rule set will be held in
"BLD",9773,1,35,0)
the middleware system for review by a lab technologist.
"BLD",9773,1,36,0)
"BLD",9773,1,37,0)
In support of this auto verification and auto release functionality, this
"BLD",9773,1,38,0)
patch will add two new application proxy users. LRLAB AUTO RELEASE is
"BLD",9773,1,39,0)
used to indicate that the results in VistA Lab were released by an
"BLD",9773,1,40,0)
automated Lab process without human interventions. LRLAB, AUTO VERIFY is
"BLD",9773,1,41,0)
used to indicate that the results were "approved" by an automated process
"BLD",9773,1,42,0)
using a rules based system.
"BLD",9773,1,43,0)
"BLD",9773,1,44,0)
"BLD",9773,1,45,0)
Patch Components
"BLD",9773,1,46,0)
================
"BLD",9773,1,47,0)
"BLD",9773,1,48,0)
Files & Fields Associated:
"BLD",9773,1,49,0)
"BLD",9773,1,50,0)
File Name (Number) Field Name (Number) New/Modified/Deleted
"BLD",9773,1,51,0)
------------------ ------------------- --------------------
"BLD",9773,1,52,0)
AUTO INSTRUMENT (#62.4) AUTO RELEASE (#99) New
"BLD",9773,1,53,0)
"BLD",9773,1,54,0)
LA7 MESSAGE LOG BULLETINS (#62.485)
"BLD",9773,1,55,0)
"BLD",9773,1,56,0)
Parameter Definitions Associated:
"BLD",9773,1,57,0)
"BLD",9773,1,58,0)
Parameter Definition Name New/Modified/Deleted
"BLD",9773,1,59,0)
------------------------- --------------------
"BLD",9773,1,60,0)
LA UI AUTO RELEASE MASTER New
"BLD",9773,1,61,0)
LA UI PROVIDER CONTACT INFO New
"BLD",9773,1,62,0)
"BLD",9773,1,63,0)
"BLD",9773,1,64,0)
The following are new entries new entry in the file LA7 MESSAGE LOG
"BLD",9773,1,65,0)
BULLETINS (#62.485):
"BLD",9773,1,66,0)
"BLD",9773,1,67,0)
CODE: 301
"BLD",9773,1,68,0)
TEXT: Msg #|1|, User |2| [DUZ: |3|] does not own the LRVERIFY security
"BLD",9773,1,69,0)
key. Auto Release not allowed for accession UID |4|.
"BLD",9773,1,70,0)
SEND ALERT: YES
"BLD",9773,1,71,0)
"BLD",9773,1,72,0)
CODE: 302
"BLD",9773,1,73,0)
TEXT: Msg #|1|, User |2| [DUZ: |3|] is not an active user on the system.
"BLD",9773,1,74,0)
Auto Release not allowed for accession UID |4|.
"BLD",9773,1,75,0)
SEND ALERT: YES
"BLD",9773,1,76,0)
"BLD",9773,1,77,0)
CODE: 303
"BLD",9773,1,78,0)
TEXT: Msg #|1|, No verifying user or application proxy found. Auto
"BLD",9773,1,79,0)
Release not allowed for accession UID |2|.
"BLD",9773,1,80,0)
SEND ALERT: YES
"BLD",9773,1,81,0)
"BLD",9773,1,82,0)
CODE: 304
"BLD",9773,1,83,0)
TEXT: Msg #|1|, User |2| [DUZ: |3|] is not a valid user to verify
"BLD",9773,1,84,0)
results. Auto Release not allowed for accession UID |4|.
"BLD",9773,1,85,0)
SEND ALERT: YES
"BLD",9773,1,86,0)
"BLD",9773,1,87,0)
CODE: 305
"BLD",9773,1,88,0)
TEXT: Msg #|1|, User |2| [DUZ: |3|] is not allowed to verify. Only auto
"BLD",9773,1,89,0)
verification enabled for this instrument. Auto Release not allowed for
"BLD",9773,1,90,0)
accession UID |4|.
"BLD",9773,1,91,0)
SEND ALERT: YES
"BLD",9773,1,92,0)
"BLD",9773,1,93,0)
CODE: 306
"BLD",9773,1,94,0)
TEXT: Msg #|1|, User |2| [DUZ: |3|] is not allowed to verify. Only tech
"BLD",9773,1,95,0)
verification enabled for this instrument. Auto Release not allowed for
"BLD",9773,1,96,0)
accession UID |4|.
"BLD",9773,1,97,0)
SEND ALERT: YES
"BLD",9773,1,98,0)
"BLD",9773,1,99,0)
CODE: 307
"BLD",9773,1,100,0)
TEXT: Msg #|1|, Auto Release not allowed for accession UID |2|. Results
"BLD",9773,1,101,0)
have previously been released.
"BLD",9773,1,102,0)
SEND ALERT: YES
"BLD",9773,1,103,0)
"BLD",9773,1,104,0)
New Service Requests (NSRs):
"BLD",9773,1,105,0)
==============================
"BLD",9773,1,106,0)
NSR# 20131009: Employ laboratory autoverification in the Veterans Health
"BLD",9773,1,107,0)
Administration.
"BLD",9773,1,108,0)
"BLD",9773,1,109,0)
Test Sites:
"BLD",9773,1,110,0)
===========
"BLD",9773,1,111,0)
Kansas City VAMC (Alpha)
"BLD",9773,1,112,0)
Tucson (Beta)
"BLD",9773,1,113,0)
Tampa (Beta)
"BLD",9773,1,114,0)
Iowa City (Beta)
"BLD",9773,1,115,0)
Fresno (Beta)
"BLD",9773,1,116,0)
"BLD",9773,1,117,0)
"BLD",9773,1,118,0)
Software and Documentation Retrieval Information
"BLD",9773,1,119,0)
==============================
"BLD",9773,1,120,0)
VistA Laboratory patch LR*5.2*458 software is distributed by Host File,
"BLD",9773,1,121,0)
along with LA*5.2*88. Software is available on the ANONYMOUS.SOFTWARE
"BLD",9773,1,122,0)
directory at one of the following Office of Information (OI) Field
"BLD",9773,1,123,0)
Offices. The preferred is to retrieve the file using Secure File Transfer
"BLD",9773,1,124,0)
Protocol (SFTP) from download.domain.ext, which transmits files from
"BLD",9773,1,125,0)
the first available FTP server. Sites may also select to retrieve
"BLD",9773,1,126,0)
documentation directly from a specific server as follows:
"BLD",9773,1,127,0)
Albany ftp.fo-albany.domain.ext
"BLD",9773,1,128,0)
Hines ftp.fo-hines.domain.ext
"BLD",9773,1,129,0)
Salt Lake City ftp.fo-slc.med.domain.ext
"BLD",9773,1,130,0)
"BLD",9773,1,131,0)
File Name Contents Retrieval Format
"BLD",9773,1,132,0)
------------------ -------------------- ----------------
"BLD",9773,1,133,0)
LAB_AUTORELEASE_1_0.KID Host File containing ASCII
"BLD",9773,1,134,0)
KIDS software distribution
"BLD",9773,1,135,0)
"BLD",9773,1,136,0)
The VistA Documentation Library (VDL) web site will also contain
"BLD",9773,1,137,0)
"BLD",9773,1,138,0)
LR_52_458_LA_52_88 Release Notes Binary
"BLD",9773,1,139,0)
for LR*5.2*458 and LA*5.2*88
"BLD",9773,1,140,0)
"BLD",9773,1,141,0)
Lab AutoRelease 1.0 User Guide Binary
"BLD",9773,1,142,0)
"BLD",9773,1,143,0)
Lab AutoRelease 1.0 Technical Manual Binary
"BLD",9773,1,144,0)
"BLD",9773,1,145,0)
Lab UI HL V1.6 Upgrade Installation Binary
"BLD",9773,1,146,0)
and User Guide
"BLD",9773,1,147,0)
"BLD",9773,1,148,0)
Lab UI HL V1.6 Upgrade Interface Binary
"BLD",9773,1,149,0)
Specifications Document
"BLD",9773,1,150,0)
"BLD",9773,1,151,0)
This website is usually updated within 1-3 days of the patch release date.
"BLD",9773,1,152,0)
The VDL web address for Laboratory Universal Interface user documentation
"BLD",9773,1,153,0)
is: http://www.va.gov/vdl/application.asp?appid=120
"BLD",9773,1,154,0)
"BLD",9773,1,155,0)
Installation Instructions
"BLD",9773,1,156,0)
=========================
"BLD",9773,1,157,0)
This patch, LA*5.2*88, is part of a combined build for Laboratory
"BLD",9773,1,158,0)
Autoverification.
"BLD",9773,1,159,0)
"BLD",9773,1,160,0)
Please refer to patch LR*5.2*458 for installation instructions.
"BLD",9773,1,161,0)
"BLD",9773,1,162,0)
Routine Information:
"BLD",9773,1,163,0)
====================
"BLD",9773,1,164,0)
"BLD",9773,1,165,0)
"BLD",9773,1,166,0)
The second line of each of these routines now looks like:
"BLD",9773,1,167,0)
;;5.2;AUTOMATED LAB INSTRUMENTS;**[Patch List]**;Sep 27, 1994;Build 10
"BLD",9773,1,168,0)
"BLD",9773,1,169,0)
The checksums below are new checksums, and
"BLD",9773,1,170,0)
can be checked with CHECK1^XTSUMBLD.
"BLD",9773,1,171,0)
"BLD",9773,1,172,0)
Routine Name: LA7UCFG
"BLD",9773,1,173,0)
Before: B4239468 After: B137316017 **66,88**
"BLD",9773,1,174,0)
Routine Name: LA7UCFG1
"BLD",9773,1,175,0)
Before: n/a After: B29526912 **88**
"BLD",9773,1,176,0)
Routine Name: LA7UIO1
"BLD",9773,1,177,0)
Before: B66837499 After: B75417661 **66,74,88**
"BLD",9773,1,178,0)
Routine Name: LA7UTILB
"BLD",9773,1,179,0)
Before: B12063183 After: B23365722 **74,88**
"BLD",9773,1,180,0)
Routine Name: LA7VHL
"BLD",9773,1,181,0)
Before: B32679919 After: B38289473 **27,46,62,64,67,74,88**
"BLD",9773,1,182,0)
Routine Name: LA7VHLU8
"BLD",9773,1,183,0)
Before: B10483894 After: 60447079 **74,88**
"BLD",9773,1,184,0)
Routine Name: LA7VHLU9
"BLD",9773,1,185,0)
Before: B19044226 After: B33364706 **68,74,88**
"BLD",9773,1,186,0)
Routine Name: LA7VIN
"BLD",9773,1,187,0)
Before: B29668237 After: B31997123 **46,67,74,88**
"BLD",9773,1,188,0)
Routine Name: LA7VIN1
"BLD",9773,1,189,0)
Before: B53484134 After: B65233143 **46,64,74,88**
"BLD",9773,1,190,0)
Routine Name: LA7VIN2
"BLD",9773,1,191,0)
Before: B44814406 After: B46992282 **46,64,74,88**
"BLD",9773,1,192,0)
Routine Name: LA7VIN2A
"BLD",9773,1,193,0)
Before: B32994528 After: B34119950 **74,88**
"BLD",9773,1,194,0)
Routine Name: LA7VIN4
"BLD",9773,1,195,0)
Before: B77376354 After: B81803911 **46,64,67,66,74,85,88**
"BLD",9773,1,196,0)
Routine Name: LA7VIN4A
"BLD",9773,1,197,0)
Before: B19473776 After: B23154184 **74,80,88**
"BLD",9773,1,198,0)
Routine Name: LA7VIN5
"BLD",9773,1,199,0)
Before: B69080940 After: B85555425 **46,64,68,74,84,88**
"BLD",9773,1,200,0)
Routine Name: LA7VIN5A
"BLD",9773,1,201,0)
Before: B32697215 After: B34608326 **46,64,67,72,66,74,88**
"BLD",9773,1,202,0)
Routine Name: LA7VORC
"BLD",9773,1,203,0)
Before: B18625097 After: B22779822 **46,64,68,88**
"BLD",9773,1,204,0)
Routine Name: LA88
"BLD",9773,1,205,0)
Before: n/a After: B37005513 **88** DELETED AFTER INSTALL
"BLD",9773,1,206,0)
Routine Name: LA88A
"BLD",9773,1,207,0)
Before: n/a After: B100793409 **88** DELETED AFTER INSTALL
"BLD",9773,1,208,0)
"BLD",9773,1,209,0)
Routine list of preceding patches: 80, 84, 85
"BLD",9773,4,0)
^9.64PA^62.485^2
"BLD",9773,4,62.4,0)
62.4
"BLD",9773,4,62.4,2,0)
^9.641^62.4^1
"BLD",9773,4,62.4,2,62.4,0)
AUTO INSTRUMENT (File-top level)
"BLD",9773,4,62.4,2,62.4,1,0)
^9.6411^99^1
"BLD",9773,4,62.4,2,62.4,1,99,0)
AUTO RELEASE
"BLD",9773,4,62.4,222)
y^n^p^^^^n^^n
"BLD",9773,4,62.4,224)
"BLD",9773,4,62.485,0)
62.485
"BLD",9773,4,62.485,222)
n^n^f^^n^^y^o^n
"BLD",9773,4,62.485,224)
I Y>299,Y<400
"BLD",9773,4,"APDD",62.4,62.4)
"BLD",9773,4,"APDD",62.4,62.4,99)
"BLD",9773,4,"B",62.4,62.4)
"BLD",9773,4,"B",62.485,62.485)
"BLD",9773,6.3)
10
"BLD",9773,"ABPKG")
n
"BLD",9773,"INI")
"BLD",9773,"INID")
y^y^
"BLD",9773,"INIT")
POST^LA88
"BLD",9773,"KRN",0)
^9.67PA^779.2^20
"BLD",9773,"KRN",.4,0)
.4
"BLD",9773,"KRN",.4,"NM",0)
^9.68A^^
"BLD",9773,"KRN",.401,0)
.401
"BLD",9773,"KRN",.401,"NM",0)
^9.68A^^
"BLD",9773,"KRN",.402,0)
.402
"BLD",9773,"KRN",.403,0)
.403
"BLD",9773,"KRN",.5,0)
.5
"BLD",9773,"KRN",.84,0)
.84
"BLD",9773,"KRN",3.6,0)
3.6
"BLD",9773,"KRN",3.8,0)
3.8
"BLD",9773,"KRN",9.2,0)
9.2
"BLD",9773,"KRN",9.8,0)
9.8
"BLD",9773,"KRN",9.8,"NM",0)
^9.68A^18^16
"BLD",9773,"KRN",9.8,"NM",1,0)
LA7VIN^^0^B31997123
"BLD",9773,"KRN",9.8,"NM",2,0)
LA7VIN4A^^0^B23154184
"BLD",9773,"KRN",9.8,"NM",3,0)
LA7VIN5^^0^B85555425
"BLD",9773,"KRN",9.8,"NM",4,0)
LA7UIO1^^0^B75417661
"BLD",9773,"KRN",9.8,"NM",5,0)
LA7VORC^^0^B22779822
"BLD",9773,"KRN",9.8,"NM",6,0)
LA7VHLU9^^0^B33364706
"BLD",9773,"KRN",9.8,"NM",7,0)
LA7VIN1^^0^B65233143
"BLD",9773,"KRN",9.8,"NM",8,0)
LA7UCFG^^0^B137316017
"BLD",9773,"KRN",9.8,"NM",11,0)
LA7VIN4^^0^B81803911
"BLD",9773,"KRN",9.8,"NM",12,0)
LA7VIN2^^0^B46992282
"BLD",9773,"KRN",9.8,"NM",13,0)
LA7VHL^^0^B38289473
"BLD",9773,"KRN",9.8,"NM",14,0)
LA7VIN5A^^0^B34608326
"BLD",9773,"KRN",9.8,"NM",15,0)
LA7VIN2A^^0^B34119950
"BLD",9773,"KRN",9.8,"NM",16,0)
LA7UTILB^^0^B23365722
"BLD",9773,"KRN",9.8,"NM",17,0)
LA7VHLU8^^0^B60447079
"BLD",9773,"KRN",9.8,"NM",18,0)
LA7UCFG1^^0^B29526912
"BLD",9773,"KRN",9.8,"NM","B","LA7UCFG",8)
"BLD",9773,"KRN",9.8,"NM","B","LA7UCFG1",18)
"BLD",9773,"KRN",9.8,"NM","B","LA7UIO1",4)
"BLD",9773,"KRN",9.8,"NM","B","LA7UTILB",16)
"BLD",9773,"KRN",9.8,"NM","B","LA7VHL",13)
"BLD",9773,"KRN",9.8,"NM","B","LA7VHLU8",17)
"BLD",9773,"KRN",9.8,"NM","B","LA7VHLU9",6)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN",1)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN1",7)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN2",12)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN2A",15)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN4",11)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN4A",2)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN5",3)
"BLD",9773,"KRN",9.8,"NM","B","LA7VIN5A",14)
"BLD",9773,"KRN",9.8,"NM","B","LA7VORC",5)
"BLD",9773,"KRN",19,0)
19
"BLD",9773,"KRN",19,"NM",0)
^9.68A^^
"BLD",9773,"KRN",19.1,0)
19.1
"BLD",9773,"KRN",101,0)
101
"BLD",9773,"KRN",409.61,0)
409.61
"BLD",9773,"KRN",771,0)
771
"BLD",9773,"KRN",779.2,0)
779.2
"BLD",9773,"KRN",870,0)
870
"BLD",9773,"KRN",8989.51,0)
8989.51
"BLD",9773,"KRN",8989.51,"NM",0)
^9.68A^2^2
"BLD",9773,"KRN",8989.51,"NM",1,0)
LA UI AUTO RELEASE MASTER^^0
"BLD",9773,"KRN",8989.51,"NM",2,0)
LA UI PROVIDER CONTACT INFO^^0
"BLD",9773,"KRN",8989.51,"NM","B","LA UI AUTO RELEASE MASTER",1)
"BLD",9773,"KRN",8989.51,"NM","B","LA UI PROVIDER CONTACT INFO",2)
"BLD",9773,"KRN",8989.52,0)
8989.52
"BLD",9773,"KRN",8989.52,"NM",0)
^9.68A^^
"BLD",9773,"KRN",8994,0)
8994
"BLD",9773,"KRN","B",.4,.4)
"BLD",9773,"KRN","B",.401,.401)
"BLD",9773,"KRN","B",.402,.402)
"BLD",9773,"KRN","B",.403,.403)
"BLD",9773,"KRN","B",.5,.5)
"BLD",9773,"KRN","B",.84,.84)
"BLD",9773,"KRN","B",3.6,3.6)
"BLD",9773,"KRN","B",3.8,3.8)
"BLD",9773,"KRN","B",9.2,9.2)
"BLD",9773,"KRN","B",9.8,9.8)
"BLD",9773,"KRN","B",19,19)
"BLD",9773,"KRN","B",19.1,19.1)
"BLD",9773,"KRN","B",101,101)
"BLD",9773,"KRN","B",409.61,409.61)
"BLD",9773,"KRN","B",771,771)
"BLD",9773,"KRN","B",779.2,779.2)
"BLD",9773,"KRN","B",870,870)
"BLD",9773,"KRN","B",8989.51,8989.51)
"BLD",9773,"KRN","B",8989.52,8989.52)
"BLD",9773,"KRN","B",8994,8994)
"BLD",9773,"PRE")
LA88A
"BLD",9773,"QDEF")
^^^^NO^^^^NO^^NO
"BLD",9773,"QUES",0)
^9.62^^0
"BLD",9773,"REQB",0)
^9.611^3^3
"BLD",9773,"REQB",1,0)
LA*5.2*80^2
"BLD",9773,"REQB",2,0)
LA*5.2*84^2
"BLD",9773,"REQB",3,0)
LA*5.2*85^2
"BLD",9773,"REQB","B","LA*5.2*80",1)
"BLD",9773,"REQB","B","LA*5.2*84",2)
"BLD",9773,"REQB","B","LA*5.2*85",3)
"DATA",62.485,301,0)
301^Msg #|1|, User |2| [DUZ: |3|] does not own the LRVERIFY security key. Auto Release not allowed for accession UID |4|.^1
"DATA",62.485,301,1)
S LA7TXT(1)=$G(LA76249,"??"),LA7TXT(2)=$$NAME^XUSER($G(LRDUZ)),LA7TXT(3)=$G(LRDUZ),LA7TXT(4)=$G(LRUID)
"DATA",62.485,302,0)
302^Msg #|1|, User |2| [DUZ: |3|] is not an active user on the system. Auto Release not allowed for accession UID |4|.^1
"DATA",62.485,302,1)
S LA7TXT(1)=$G(LA76249,"??"),LA7TXT(2)=$$NAME^XUSER($G(LRDUZ)),LA7TXT(3)=$G(LRDUZ),LA7TXT(4)=$G(LRUID)
"DATA",62.485,303,0)
303^Msg #|1|, No verifying user or application proxy found. Auto Release not allowed for accession UID |2|.^1
"DATA",62.485,303,1)
S LA7TXT(1)=$G(LA76249,"??"),LA7TXT(2)=$G(LRUID)
"DATA",62.485,304,0)
304^Msg #|1|, User |2| [DUZ: |3|] is not a valid user to verify results. Auto Release not allowed for accession UID |4|.^1
"DATA",62.485,304,1)
S LA7TXT(1)=$G(LA76249,"??"),LA7TXT(2)=$$NAME^XUSER($G(LRDUZ)),LA7TXT(3)=$G(LRDUZ),LA7TXT(4)=$G(LRUID)
"DATA",62.485,305,0)
305^Msg #|1|, User |2| [DUZ: |3|] is not allowed to verify. Only auto verification enabled for this instrument. Auto Release not allowed for accession UID |4|.^1
"DATA",62.485,305,1)
S LA7TXT(1)=$G(LA76249,"??"),LA7TXT(2)=$$NAME^XUSER($G(LRDUZ)),LA7TXT(3)=$G(LRDUZ),LA7TXT(4)=$G(LRUID)
"DATA",62.485,306,0)
306^Msg #|1|, User |2| [DUZ: |3|] is not allowed to verify. Only tech verification enabled for this instrument. Auto Release not allowed for accession UID |4|.^1
"DATA",62.485,306,1)
S LA7TXT(1)=$G(LA76249,"??"),LA7TXT(2)=$$NAME^XUSER($G(LRDUZ)),LA7TXT(3)=$G(LRDUZ),LA7TXT(4)=$G(LRUID)
"DATA",62.485,307,0)
307^Msg #|1|, Auto Release not allowed for accession UID |2|. Results have previously been released.^1
"DATA",62.485,307,1)
S LA7TXT(1)=$G(LA76249,"??"),LA7TXT(2)=$G(LRUID)
"FIA",62.4)
AUTO INSTRUMENT
"FIA",62.4,0)
^LAB(62.4,
"FIA",62.4,0,0)
62.4
"FIA",62.4,0,1)
y^n^p^^^^n^^n
"FIA",62.4,0,10)
"FIA",62.4,0,11)
"FIA",62.4,0,"RLRO")
"FIA",62.4,0,"VR")
5.2^LA
"FIA",62.4,62.4)
1
"FIA",62.4,62.4,99)
"FIA",62.485)
LA7 MESSAGE LOG BULLETINS
"FIA",62.485,0)
^LAHM(62.485,
"FIA",62.485,0,0)
62.485
"FIA",62.485,0,1)
n^n^f^^n^^y^o^n
"FIA",62.485,0,10)
"FIA",62.485,0,11)
I Y>299,Y<400
"FIA",62.485,0,"RLRO")
"FIA",62.485,0,"VR")
5.2^LA
"FIA",62.485,62.485)
0
"INIT")
POST^LA88
"KRN",8989.5,1481,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^1
"KRN",8989.5,1481,1)
2
"KRN",8989.5,1482,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^2
"KRN",8989.5,1482,1)
8
"KRN",8989.5,1483,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^3
"KRN",8989.5,1483,1)
7
"KRN",8989.5,1484,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^4
"KRN",8989.5,1484,1)
3
"KRN",8989.5,1485,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^5
"KRN",8989.5,1485,1)
4
"KRN",8989.5,1486,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^6
"KRN",8989.5,1486,1)
1
"KRN",8989.5,1487,0)
11;DIC(9.4,^LA UI AUTO RELEASE MASTER^1
"KRN",8989.5,1487,1)
0
"KRN",8989.5,1490,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^7
"KRN",8989.5,1490,1)
6
"KRN",8989.5,1491,0)
11;DIC(9.4,^LA UI PROVIDER CONTACT INFO^8
"KRN",8989.5,1491,1)
5
"KRN",8989.51,794,-1)
0^1
"KRN",8989.51,794,0)
LA UI AUTO RELEASE MASTER^Auto Release Results System Wide^0^^AUTO RELEASE RESULTS SYSTEM WIDE
"KRN",8989.51,794,1)
S^0:NO (DISABLED);1:YES (ENABLED)^Do you want to Auto Release Results System Wide?
"KRN",8989.51,794,6)
^^
"KRN",8989.51,794,20,0)
^8989.512^2^2^3150529^^^^
"KRN",8989.51,794,20,1,0)
This parameter is used to determine whether lab results are sent to the
"KRN",8989.51,794,20,2,0)
auto release process.
"KRN",8989.51,794,30,0)
^8989.513I^2^2
"KRN",8989.51,794,30,1,0)
1^4.2
"KRN",8989.51,794,30,2,0)
10^9.4
"KRN",8989.51,795,-1)
0^2
"KRN",8989.51,795,0)
LA UI PROVIDER CONTACT INFO^Lab Ordering Provider Contact Info^1^Sequence^Type of Phone Contact
"KRN",8989.51,795,1)
S^1:PHONE (HOME);2:OFFICE PHONE;3:PHONE #3;4:PHONE #4;5:COMMERICAL;6:FAX;7:VOICE PAGER;8:DIGITAL PAGER^Specify which method to use to contact the ordering provider.
"KRN",8989.51,795,3)
"KRN",8989.51,795,6)
N^1:8:0^Enter the sequence for the contact info.
"KRN",8989.51,795,20,0)
^^58^58^3150925^
"KRN",8989.51,795,20,1,0)
Contains the list of which contact info for the ordering provider to send
"KRN",8989.51,795,20,2,0)
in a Lab HL7 Order message from the user's corresponding entry in NEW
"KRN",8989.51,795,20,3,0)
PERSON file (#200).
"KRN",8989.51,795,20,4,0)
"KRN",8989.51,795,20,5,0)
It can be specified at the system or the individual user level. If
"KRN",8989.51,795,20,6,0)
specified at the user level it takes precedence and overrides the setting
"KRN",8989.51,795,20,7,0)
at the system level allowing specific users to have their own specific set
"KRN",8989.51,795,20,8,0)
of contacts to send.
"KRN",8989.51,795,20,9,0)
"KRN",8989.51,795,20,10,0)
The sequence specifies the order and info to check, maximum of 6 allowed.
"KRN",8989.51,795,20,11,0)
Only the first 2 with a value will be placed in the message as the HL7
"KRN",8989.51,795,20,12,0)
standard constrains the number of repetitions for this information at 2.
"KRN",8989.51,795,20,13,0)
"KRN",8989.51,795,20,14,0)
The value specifies which field from the person's entry in NEW PERSON
"KRN",8989.51,795,20,15,0)
file (#200) to send in the message.
"KRN",8989.51,795,20,16,0)
"KRN",8989.51,795,20,17,0)
These are the fields currently available.
"KRN",8989.51,795,20,18,0)
"KRN",8989.51,795,20,19,0)
Field # Field Name Description
"KRN",8989.51,795,20,20,0)
"KRN",8989.51,795,20,21,0)
.131 PHONE (HOME) This is the telephone number for the new
"KRN",8989.51,795,20,22,0)
person.
"KRN",8989.51,795,20,23,0)
"KRN",8989.51,795,20,24,0)
.132 OFFICE PHONE This is the business/office telephone for the
"KRN",8989.51,795,20,25,0)
new person.
"KRN",8989.51,795,20,26,0)
"KRN",8989.51,795,20,27,0)
.133 PHONE #3 This is an alternate telephone number where the
"KRN",8989.51,795,20,28,0)
new person might also be reached.
"KRN",8989.51,795,20,29,0)
"KRN",8989.51,795,20,30,0)
.134 PHONE #4 This is another alternate telephone number
"KRN",8989.51,795,20,31,0)
where the new person might also be reached.
"KRN",8989.51,795,20,32,0)
"KRN",8989.51,795,20,33,0)
.135 COMMERCIAL PHONE This is a commercial phone number.
"KRN",8989.51,795,20,34,0)
"KRN",8989.51,795,20,35,0)
.136 FAX NUMBER This field holds a phone number for a FAX
"KRN",8989.51,795,20,36,0)
machine for this user. It needs to be a format
"KRN",8989.51,795,20,37,0)
that can be understood by a sending MODEM.
"KRN",8989.51,795,20,38,0)
"KRN",8989.51,795,20,39,0)
.137 VOICE PAGER This field holds a phone number for an ANALOG
"KRN",8989.51,795,20,40,0)
PAGER that this person carries with them.
"KRN",8989.51,795,20,41,0)
"KRN",8989.51,795,20,42,0)
.138 DIGITAL PAGER This field holds a phone number for a DIGITAL
"KRN",8989.51,795,20,43,0)
PAGER that this person carries with them.
"KRN",8989.51,795,20,44,0)
"KRN",8989.51,795,20,45,0)
"KRN",8989.51,795,20,46,0)
The parameter is distributed pre-configured at the package level as
"KRN",8989.51,795,20,47,0)
follows:
"KRN",8989.51,795,20,48,0)
"KRN",8989.51,795,20,49,0)
Sequence Value
"KRN",8989.51,795,20,50,0)
-------- -----
"KRN",8989.51,795,20,51,0)
1 OFFICE PHONE
"KRN",8989.51,795,20,52,0)
2 DIGITAL PAGER
"KRN",8989.51,795,20,53,0)
3 VOICE PAGER
"KRN",8989.51,795,20,54,0)
4 PHONE #3
"KRN",8989.51,795,20,55,0)
5 PHONE #4
"KRN",8989.51,795,20,56,0)
6 PHONE (HOME)
"KRN",8989.51,795,20,57,0)
7 COMMERICAL PHONE
"KRN",8989.51,795,20,58,0)
8 FAX NUMBER
"KRN",8989.51,795,30,0)
^8989.513I^4^3
"KRN",8989.51,795,30,1,0)
1^200
"KRN",8989.51,795,30,3,0)
2^4.2
"KRN",8989.51,795,30,4,0)
3^9.4
"MBREQ")
0
"ORD",20,8989.51)
8989.51;20;;;PAR1E1^XPDTA2;PAR1F1^XPDIA3;PAR1E1^XPDIA3;PAR1F2^XPDIA3;;PAR1DEL^XPDIA3(%)
"ORD",20,8989.51,0)
PARAMETER DEFINITION
"PKG",11,-1)
1^1
"PKG",11,0)
AUTOMATED LAB INSTRUMENTS^LA^Lab Auto-Instrument Package
"PKG",11,20,0)
^9.402P^^
"PKG",11,22,0)
^9.49I^1^1
"PKG",11,22,1,0)
5.2^2940927^2960605
"PKG",11,22,1,"PAH",1,0)
88^3160628
"PKG",11,22,1,"PAH",1,1,0)
^^209^209^3160628
"PKG",11,22,1,"PAH",1,1,1,0)
Associated Patches: (v)LA*5.2*80 <<= must be installed BEFORE `LA*5.2*88'
"PKG",11,22,1,"PAH",1,1,2,0)
(v)LA*5.2*84 <<= must be installed BEFORE `LA*5.2*88'
"PKG",11,22,1,"PAH",1,1,3,0)
(v)LA*5.2*85 <<= must be installed BEFORE `LA*5.2*88'
"PKG",11,22,1,"PAH",1,1,4,0)
"PKG",11,22,1,"PAH",1,1,5,0)
Subject: AUTOVERIFICATION
"PKG",11,22,1,"PAH",1,1,6,0)
"PKG",11,22,1,"PAH",1,1,7,0)
Category: ROUTINE
"PKG",11,22,1,"PAH",1,1,8,0)
ENHANCEMENT
"PKG",11,22,1,"PAH",1,1,9,0)
DATA DICTIONARY
"PKG",11,22,1,"PAH",1,1,10,0)
"PKG",11,22,1,"PAH",1,1,11,0)
Description:
"PKG",11,22,1,"PAH",1,1,12,0)
===========
"PKG",11,22,1,"PAH",1,1,13,0)
The build for this patch is distributed as part of a multi-package build
"PKG",11,22,1,"PAH",1,1,14,0)
that contains LR*5.2*458 and LA*5.2*88. This contains functionality to
"PKG",11,22,1,"PAH",1,1,15,0)
enable Auto Verification and Auto Release of lab normal lab results and
"PKG",11,22,1,"PAH",1,1,16,0)
was initially developed at the Kansas City VAMC. This new process
"PKG",11,22,1,"PAH",1,1,17,0)
involves automatic review and release of test results based on a
"PKG",11,22,1,"PAH",1,1,18,0)
lab-established set of boundaries, also referred as rules, rule sets, and
"PKG",11,22,1,"PAH",1,1,19,0)
algorithms. Lab results that are in a "normal" range, as pre-determined
"PKG",11,22,1,"PAH",1,1,20,0)
by the laboratory, will transmit directly from the middleware to VistA
"PKG",11,22,1,"PAH",1,1,21,0)
lab files and on to Computerized Patient Record System (CPRS) without the
"PKG",11,22,1,"PAH",1,1,22,0)
intermediate step of requiring a lab technologist to manually review and
"PKG",11,22,1,"PAH",1,1,23,0)
sign off on these normal lab results. This process will eliminate the
"PKG",11,22,1,"PAH",1,1,24,0)
need for a qualified technologist to manually approve all "normal"
"PKG",11,22,1,"PAH",1,1,25,0)
results before those results are filed in VistA Lab files and available
"PKG",11,22,1,"PAH",1,1,26,0)
for clinicians to view in CPRS.
"PKG",11,22,1,"PAH",1,1,27,0)
"PKG",11,22,1,"PAH",1,1,28,0)
Each VAMC site will determine which instruments will use this
"PKG",11,22,1,"PAH",1,1,29,0)
functionality as it can set up on an instrument by instrument basis.
"PKG",11,22,1,"PAH",1,1,30,0)
Essentially VistA Lab instruments are set up as either being available
"PKG",11,22,1,"PAH",1,1,31,0)
for auto verification or not available for auto verification. If an
"PKG",11,22,1,"PAH",1,1,32,0)
instrument is set up for auto verification, then a lab result passing the
"PKG",11,22,1,"PAH",1,1,33,0)
rule set will be filed by the middleware in VistA lab files and available