-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathDG-5P3_SEQ-770_PAT-867.KIDS
4704 lines (4427 loc) · 140 KB
/
DG-5P3_SEQ-770_PAT-867.KIDS
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
Released DG*5.3*867 SEQ #770
Extracted from mail message
**KIDS**:DG*5.3*867^
**INSTALL NAME**
DG*5.3*867
"BLD",8715,0)
DG*5.3*867^REGISTRATION^0^3131106^y
"BLD",8715,1,0)
^^393^393^3131106^
"BLD",8715,1,1,0)
Description:
"BLD",8715,1,2,0)
============
"BLD",8715,1,3,0)
"BLD",8715,1,4,0)
This patch has enhancements that extend the capabilities of the Veterans
"BLD",8715,1,5,0)
Health Information Systems and Technology Architecture (VistA) Patient
"BLD",8715,1,6,0)
Registration system (DG), Fee Basis System (FB), and Integrated Billing
"BLD",8715,1,7,0)
(IB).
"BLD",8715,1,8,0)
"BLD",8715,1,9,0)
Below is a list of all the applications involved in this project along
"BLD",8715,1,10,0)
with their patch number:
"BLD",8715,1,11,0)
"BLD",8715,1,12,0)
APPLICATION/VERSION PATCH
"BLD",8715,1,13,0)
---------------------------------------------------------------
"BLD",8715,1,14,0)
PATIENT REGISTRATION (DG) V 5.3 DG*5.3*867
"BLD",8715,1,15,0)
FEE BASIS (FB) V 3.5 FB*3.5*146
"BLD",8715,1,16,0)
INTEGRATED BILLING (IB) 2.0 IB*2.0*499
"BLD",8715,1,17,0)
"BLD",8715,1,18,0)
The patches (DG*5.3*867, FB*3.5*146, and IB*2.0*499) are being released
"BLD",8715,1,19,0)
in the Kernel Installation and Distribution System (KIDS) multi-build
"BLD",8715,1,20,0)
distribution NEWBORN DG FB IB BUNDLE 1.0
"BLD",8715,1,21,0)
"BLD",8715,1,22,0)
The purpose of the Caregivers: Newborn Claims Processing Enhancement
"BLD",8715,1,23,0)
Project is to enhance VistA Fee Basis application in support of
"BLD",8715,1,24,0)
compliance with Public Law 111-163, the Caregiver and Veterans Omnibus
"BLD",8715,1,25,0)
Health Services Act of 2010. This law makes changes to sections of Title
"BLD",8715,1,26,0)
38, United States Code to furnish health care services to a newborn child
"BLD",8715,1,27,0)
of a Woman Veteran who is receiving maternity care furnished by the
"BLD",8715,1,28,0)
Department of Veterans Affairs (VA) for not more than seven days after
"BLD",8715,1,29,0)
the birth of the child.
"BLD",8715,1,30,0)
"BLD",8715,1,31,0)
The scope of these enhancements is to capture information on healthcare
"BLD",8715,1,32,0)
services provided to newborn children of Women Veterans. Affected
"BLD",8715,1,33,0)
functions include eligibility determination, enrollment and registration,
"BLD",8715,1,34,0)
documentation of referrals and authorization for care, claims processing,
"BLD",8715,1,35,0)
and payment. Only modification to the Fee Basis (FB) and the Registration
"BLD",8715,1,36,0)
(DG) packages are necessary to meet the requirements of this enhancement.
"BLD",8715,1,37,0)
The Integrated Billing (IB) Patch is included to provide required data
"BLD",8715,1,38,0)
for the Fee Basis install to reference.
"BLD",8715,1,39,0)
"BLD",8715,1,40,0)
"BLD",8715,1,41,0)
The primary purpose of this enhancement is to allow the Electronic Filing
"BLD",8715,1,42,0)
of Newborn claims.
"BLD",8715,1,43,0)
"BLD",8715,1,44,0)
Functional Description
"BLD",8715,1,45,0)
------------------------------
"BLD",8715,1,46,0)
The following features and functions have been added to the Fee Basis
"BLD",8715,1,47,0)
workflow process applying to both Civil Hospital and Medical Fee:
"BLD",8715,1,48,0)
"BLD",8715,1,49,0)
1. A new Patient Type of NEWBORN OF VETERAN has been added to the TYPE
"BLD",8715,1,50,0)
OF PATIENT file (#391). This new selection will be available on
"BLD",8715,1,51,0)
Registration Screen <7>.
"BLD",8715,1,52,0)
"BLD",8715,1,53,0)
2. A sponsor is required for all Newborns determined by having the DOB
"BLD",8715,1,54,0)
less than one (1) year from the present date. An inconsistency check has
"BLD",8715,1,55,0)
been added to check the presence of a sponsor. If an inconsistency is
"BLD",8715,1,56,0)
found the inconsistency check will prompt the user to return to Screen
"BLD",8715,1,57,0)
<15> in registration to enter a Sponsor.
"BLD",8715,1,58,0)
"BLD",8715,1,59,0)
3. All Sponsors for Newborns must be listed as eligible for care. An
"BLD",8715,1,60,0)
inconsistency check will check the status of the Sponsors Eligibility.
"BLD",8715,1,61,0)
The check will trigger if the Sponsor has no Eligibility status.
"BLD",8715,1,62,0)
"BLD",8715,1,63,0)
All other statuses (i.e. Pending Verification, Verified, and Pending
"BLD",8715,1,64,0)
Re-verification) are acceptable.
"BLD",8715,1,65,0)
"BLD",8715,1,66,0)
4. Fee Authorization dates associated with Newborns have checks in place
"BLD",8715,1,67,0)
to not allow Authorization dates that fall outside the accepted range of
"BLD",8715,1,68,0)
Newborn Authorization. The range is DOB to DOB+7. The system will warn
"BLD",8715,1,69,0)
the user and not accept an Authorization date that falls outside the
"BLD",8715,1,70,0)
appropriate range for a Newborn.
"BLD",8715,1,71,0)
"BLD",8715,1,72,0)
5. When a Veteran Mother of a Sponsored Newborn is reviewed in the
"BLD",8715,1,73,0)
Registration screens, Screen <15> will display the Newborn(s), with the
"BLD",8715,1,74,0)
additional header of "Sponsored Newborn".
"BLD",8715,1,75,0)
"BLD",8715,1,76,0)
6. The FAMILY PREFIX "NB Newborn of Vet" has been added to the Help text
"BLD",8715,1,77,0)
in the FAMILY PREFIX field (#.03) in the SPONSOR RELATIONSHIP file
"BLD",8715,1,78,0)
(#355.81)
"BLD",8715,1,79,0)
"BLD",8715,1,80,0)
7. "NON-VA FOR FEMALE VET+NEWBORN 17.38" was added to the VA ADMITTING
"BLD",8715,1,81,0)
REGULATION file (#43.4). This new Admitting Regulation is available when
"BLD",8715,1,82,0)
editing the 7078.
"BLD",8715,1,83,0)
"BLD",8715,1,84,0)
8. The following default values were added when entering a Newborn with
"BLD",8715,1,85,0)
a date of birth of less than one (1) year from present date. Defaults
"BLD",8715,1,86,0)
will only be assigned when specified screens are accessed during the
"BLD",8715,1,87,0)
registration process:
"BLD",8715,1,88,0)
PATIENT DATA, SCREEN <2> Marital field is defaulted to NEVER MARRIED.
"BLD",8715,1,89,0)
APPLICANT/SPOUSE EMPLOYMENT DATA, SCREEN <4> Status field is defaulted to
"BLD",8715,1,90,0)
NOT EMPLOYED. FAMILY DEMOGRAPHIC DATA, SCREEN <8> Married Last Year field
"BLD",8715,1,91,0)
is defaulted to NO.
"BLD",8715,1,92,0)
"BLD",8715,1,93,0)
"BLD",8715,1,94,0)
Patch Components
"BLD",8715,1,95,0)
================
"BLD",8715,1,96,0)
"BLD",8715,1,97,0)
"BLD",8715,1,98,0)
Files & Fields Associated:
"BLD",8715,1,99,0)
"BLD",8715,1,100,0)
"BLD",8715,1,101,0)
File Name (#) Field Name (#)
"BLD",8715,1,102,0)
New/Modified/Deleted
"BLD",8715,1,103,0)
------------- -------------- -----------------
"BLD",8715,1,104,0)
TYPE OF PATIENT (#391) NAME (#.01) New Data content
"BLD",8715,1,105,0)
(Single new record added "NEWBORN OF VETERAN") No Data
"BLD",8715,1,106,0)
Dictionary changes
"BLD",8715,1,107,0)
"BLD",8715,1,108,0)
VA ADMITTING REGULATION (#43.4) NAME (#.01) New Data content
"BLD",8715,1,109,0)
(Single new record added "NON-VA FOR FEMALE VET+NEWBORN")
"BLD",8715,1,110,0)
No Data Dictionary changes
"BLD",8715,1,111,0)
"BLD",8715,1,112,0)
INCONSISTENT DATA ELEMENTS (#38.6) New Data content
"BLD",8715,1,113,0)
Two new records added:
"BLD",8715,1,114,0)
313 NEWBORN REQUIRES SPONSOR
"BLD",8715,1,115,0)
314 NEWBORN NEEDS ELIGIBLE SPONSOR.)
"BLD",8715,1,116,0)
No Data Dictionary changes
"BLD",8715,1,117,0)
"BLD",8715,1,118,0)
Forms Associated:
"BLD",8715,1,119,0)
"BLD",8715,1,120,0)
Form Name File # New/Modified/Deleted
"BLD",8715,1,121,0)
--------- ------ --------------------
"BLD",8715,1,122,0)
N/A
"BLD",8715,1,123,0)
"BLD",8715,1,124,0)
Mail Groups Associated:
"BLD",8715,1,125,0)
"BLD",8715,1,126,0)
Mail Group Name
"BLD",8715,1,127,0)
New/Modified/Deleted
"BLD",8715,1,128,0)
--------------- --------------------
"BLD",8715,1,129,0)
N/A
"BLD",8715,1,130,0)
"BLD",8715,1,131,0)
Options Associated:
"BLD",8715,1,132,0)
"BLD",8715,1,133,0)
Option Name Type New/Modified/Deleted
"BLD",8715,1,134,0)
----------- ---- --------------------
"BLD",8715,1,135,0)
N/A
"BLD",8715,1,136,0)
"BLD",8715,1,137,0)
Protocols Associated:
"BLD",8715,1,138,0)
"BLD",8715,1,139,0)
Protocol Name New/Modified/Deleted
"BLD",8715,1,140,0)
------------- --------------------
"BLD",8715,1,141,0)
N/A
"BLD",8715,1,142,0)
"BLD",8715,1,143,0)
Security Keys Associated:
"BLD",8715,1,144,0)
"BLD",8715,1,145,0)
Security Key Name
"BLD",8715,1,146,0)
-----------------
"BLD",8715,1,147,0)
N/A
"BLD",8715,1,148,0)
"BLD",8715,1,149,0)
Templates Associated:
"BLD",8715,1,150,0)
"BLD",8715,1,151,0)
Template Name Type File Name (#) New/Modified/Deleted
"BLD",8715,1,152,0)
------------- ---- ------------- --------------------
"BLD",8715,1,153,0)
"BLD",8715,1,154,0)
"BLD",8715,1,155,0)
Additional Information:
"BLD",8715,1,156,0)
"BLD",8715,1,157,0)
"BLD",8715,1,158,0)
New Service Requests (NSRs):
"BLD",8715,1,159,0)
-----------------------------
"BLD",8715,1,160,0)
NSR 20100901
"BLD",8715,1,161,0)
"BLD",8715,1,162,0)
Patient Safety Issues (PSIs):
"BLD",8715,1,163,0)
------------------------------
"BLD",8715,1,164,0)
N/A
"BLD",8715,1,165,0)
"BLD",8715,1,166,0)
Remedy Ticket(s) & Overviews:
"BLD",8715,1,167,0)
-----------------------------
"BLD",8715,1,168,0)
N/A
"BLD",8715,1,169,0)
"BLD",8715,1,170,0)
"BLD",8715,1,171,0)
Test Sites:
"BLD",8715,1,172,0)
-----------
"BLD",8715,1,173,0)
"BLD",8715,1,174,0)
LEXINGTON
"BLD",8715,1,175,0)
PUGET SOUND
"BLD",8715,1,176,0)
"BLD",8715,1,177,0)
"BLD",8715,1,178,0)
Documentation Retrieval Instructions:
"BLD",8715,1,179,0)
-------------------------------------
"BLD",8715,1,180,0)
Updated documentation describing the new functionality introduced by this
"BLD",8715,1,181,0)
patch is available.
"BLD",8715,1,182,0)
"BLD",8715,1,183,0)
The preferred method is to FTP the files from
"BLD",8715,1,184,0)
ftp://download.vista.domain.ext/. This transmits the files from the first
"BLD",8715,1,185,0)
available FTP server. Sites may also elect to retrieve software directly
"BLD",8715,1,186,0)
from a specific server as follows:
"BLD",8715,1,187,0)
"BLD",8715,1,188,0)
Albany ftp.fo-albany.domain.ext
"BLD",8715,1,189,0)
<ftp://ftp.fo-albany.domain.ext>
"BLD",8715,1,190,0)
Hines ftp.fo-hines.domain.ext <ftp://ftp.fo-hines.domain.ext>
"BLD",8715,1,191,0)
Salt Lake City ftp.fo-slc.domain.ext <ftp://ftp.fo-slc.domain.ext>
"BLD",8715,1,192,0)
"BLD",8715,1,193,0)
The documentation will be in the form of Adobe Acrobat files.
"BLD",8715,1,194,0)
"BLD",8715,1,195,0)
Documentation can also be found on the VA Software Documentation Library
"BLD",8715,1,196,0)
at: http://www4.domain.ext/vdl/
"BLD",8715,1,197,0)
"BLD",8715,1,198,0)
File Description File Name FTP Mode
"BLD",8715,1,199,0)
-------------------------------------------------------------------------
"BLD",8715,1,200,0)
-
"BLD",8715,1,201,0)
Fee Basis User Manual fb3_5um.pdf Binary
"BLD",8715,1,202,0)
PIMS v5.3 ADT User Manual Registration dg_5_3_reg_um.pdf Binary
"BLD",8715,1,203,0)
Newborn Procedure Guide
"BLD",8715,1,204,0)
newborn_pg.pdf Binary
"BLD",8715,1,205,0)
"BLD",8715,1,206,0)
The Newborn Procedure Guide should be distributed to those personnel
"BLD",8715,1,207,0)
registering
"BLD",8715,1,208,0)
newborns and/or processing newborn claims.
"BLD",8715,1,209,0)
"BLD",8715,1,210,0)
"BLD",8715,1,211,0)
Patch Installation:
"BLD",8715,1,212,0)
"BLD",8715,1,213,0)
"BLD",8715,1,214,0)
Pre/Post Installation Overview
"BLD",8715,1,215,0)
------------------------------
"BLD",8715,1,216,0)
There are three post installation routines associated with this patch
"BLD",8715,1,217,0)
DG867PO, FB146PO, and IB499PO. These routines primarily serve as filters
"BLD",8715,1,218,0)
for the data transmitted to the appropriate files listed above, so that
"BLD",8715,1,219,0)
only the intended data is delivered. The only exception is the IB499PO
"BLD",8715,1,220,0)
routine which programmatically makes an addition to the help text of the
"BLD",8715,1,221,0)
FAMILY PREFIX field (#.03) in the SPONSOR RELATIONSHIP file (#355.81).
"BLD",8715,1,222,0)
These post installation routines may be deleted after successful
"BLD",8715,1,223,0)
installation of the NEWBORN DG FB IB BUNDLE 1.0
"BLD",8715,1,224,0)
"BLD",8715,1,225,0)
Installation Instructions
"BLD",8715,1,226,0)
-------------------------
"BLD",8715,1,227,0)
This patch may be installed with users on the system although it is
"BLD",8715,1,228,0)
recommended that it be installed during non-peak hours to minimize
"BLD",8715,1,229,0)
potential disruption to users. This patch should take less than 5 minutes
"BLD",8715,1,230,0)
to install.
"BLD",8715,1,231,0)
"BLD",8715,1,232,0)
FB*3.5*147 is a required patch and must be installed before DG*5.3*867.
"BLD",8715,1,233,0)
"BLD",8715,1,234,0)
DG*5.3*867 is one of three patches for this release (including FB*3.5*146
"BLD",8715,1,235,0)
and IB*2.0*499). The patches will be installed as a bundle in the
"BLD",8715,1,236,0)
following order:
"BLD",8715,1,237,0)
"BLD",8715,1,238,0)
1) DG*5.3*867
"BLD",8715,1,239,0)
2) FB*3.5*146
"BLD",8715,1,240,0)
3) IB*2.0*499
"BLD",8715,1,241,0)
"BLD",8715,1,242,0)
"BLD",8715,1,243,0)
Pre-Installation Instructions
"BLD",8715,1,244,0)
-----------------------------
"BLD",8715,1,245,0)
1. OBTAIN PATCHES
"BLD",8715,1,246,0)
--------------
"BLD",8715,1,247,0)
Obtain the host file NEWBORN_1_2_DG_FB_IB.KID which contains the
"BLD",8715,1,248,0)
following patches:
"BLD",8715,1,249,0)
"BLD",8715,1,250,0)
DG*5.3*867
"BLD",8715,1,251,0)
FB*3.5*146
"BLD",8715,1,252,0)
IB*2.0*499
"BLD",8715,1,253,0)
"BLD",8715,1,254,0)
Sites can retrieve VistA software from the following FTP addresses. The
"BLD",8715,1,255,0)
preferred method is to FTP the files from:
"BLD",8715,1,256,0)
"BLD",8715,1,257,0)
download.vista.domain.ext
"BLD",8715,1,258,0)
"BLD",8715,1,259,0)
This will transmit the files from the first available FTP server. Sites
"BLD",8715,1,260,0)
may also elect to retrieve software directly from a specific server as
"BLD",8715,1,261,0)
follows:
"BLD",8715,1,262,0)
"BLD",8715,1,263,0)
Albany ftp.fo-albany.domain.ext
"BLD",8715,1,264,0)
Hines ftp.fo-hines.domain.ext
"BLD",8715,1,265,0)
Salt Lake City ftp.fo-slc.domain.ext
"BLD",8715,1,266,0)
"BLD",8715,1,267,0)
The NEWBORN_1_2_DG_FB_IB.KID host file is located in the
"BLD",8715,1,268,0)
anonymous.software directory. Use ASCII Mode when downloading the file.
"BLD",8715,1,269,0)
"BLD",8715,1,270,0)
2. START UP KIDS
"BLD",8715,1,271,0)
-------------
"BLD",8715,1,272,0)
Start up the Kernel Installation and Distribution System Menu option
"BLD",8715,1,273,0)
[XPD MAIN]:
"BLD",8715,1,274,0)
"BLD",8715,1,275,0)
Edits and Distribution ...
"BLD",8715,1,276,0)
Utilities ...
"BLD",8715,1,277,0)
Installation ...
"BLD",8715,1,278,0)
"BLD",8715,1,279,0)
Select Kernel Installation & Distribution System Option: Installation
"BLD",8715,1,280,0)
---
"BLD",8715,1,281,0)
Load a Distribution
"BLD",8715,1,282,0)
Print Transport Global
"BLD",8715,1,283,0)
Compare Transport Global to Current System
"BLD",8715,1,284,0)
Verify Checksums in Transport Global
"BLD",8715,1,285,0)
Install Package(s)
"BLD",8715,1,286,0)
Restart Install of Package(s)
"BLD",8715,1,287,0)
Unload a Distribution
"BLD",8715,1,288,0)
Backup a Transport Global
"BLD",8715,1,289,0)
"BLD",8715,1,290,0)
Select Installation Option:
"BLD",8715,1,291,0)
"BLD",8715,1,292,0)
3. LOAD TRANSPORT GLOBAL FOR MULTI-BUILD
"BLD",8715,1,293,0)
-------------------------------------
"BLD",8715,1,294,0)
From the Installation menu, select the Load a Distribution option.
"BLD",8715,1,295,0)
"BLD",8715,1,296,0)
When prompted for "Enter a Host File:" Enter the full directory path
"BLD",8715,1,297,0)
where you saved the host file NEWBORN_1_2_DG_FB_IB.KID
"BLD",8715,1,298,0)
(e.g., SYS$SYSDEVICE:[ANONYMOUS]NEWBORN_1_2_DG_FB_IB.KID)
"BLD",8715,1,299,0)
"BLD",8715,1,300,0)
When prompted for "OK to continue with Load? NO//", Enter "YES."
"BLD",8715,1,301,0)
"BLD",8715,1,302,0)
The following will display:
"BLD",8715,1,303,0)
"BLD",8715,1,304,0)
Loading Distribution...
"BLD",8715,1,305,0)
"BLD",8715,1,306,0)
NEWBORN DG FB IB BUNDLE 1.0
"BLD",8715,1,307,0)
DG*5.3*867
"BLD",8715,1,308,0)
FB*3.5*146
"BLD",8715,1,309,0)
IB*2.0*499
"BLD",8715,1,310,0)
Use INSTALL NAME: NEWBORN DG FB IB BUNDLE 1.0 to install this
"BLD",8715,1,311,0)
distribution.
"BLD",8715,1,312,0)
"BLD",8715,1,313,0)
4. RUN OPTIONAL INSTALLATION OPTIONS FOR MULTI-BUILD
"BLD",8715,1,314,0)
-------------------------------------------------
"BLD",8715,1,315,0)
From the Installation menu, you may select to use the following
"BLD",8715,1,316,0)
options (when prompted for the INSTALL NAME, enter NEWBORN DG FB IB
"BLD",8715,1,317,0)
BUNDLE 1.0
"BLD",8715,1,318,0)
"BLD",8715,1,319,0)
a. Backup a Transport Global - This option will create a backup
"BLD",8715,1,320,0)
message of any routines exported with this patch. It will not
"BLD",8715,1,321,0)
backup any other changes such as data dictionaries or templates.
"BLD",8715,1,322,0)
b. Compare Transport Global to Current System - This option will
"BLD",8715,1,323,0)
allow you to view all changes that will be made when this patch
"BLD",8715,1,324,0)
is installed. It compares all components of this patch
"BLD",8715,1,325,0)
(routines, data dictionaries, templates, etc.).
"BLD",8715,1,326,0)
c. Verify Checksums in Transport Global - This option will allow
"BLD",8715,1,327,0)
you to ensure the integrity of the routines that are in the
"BLD",8715,1,328,0)
transport global.
"BLD",8715,1,329,0)
"BLD",8715,1,330,0)
5. INSTALL MULTI-BUILD
"BLD",8715,1,331,0)
-------------------
"BLD",8715,1,332,0)
This is the step to start the installation of this KIDS patch. This
"BLD",8715,1,333,0)
will
"BLD",8715,1,334,0)
need to be run for the NEWBORN DG FB IB BUNDLE 1.0
"BLD",8715,1,335,0)
"BLD",8715,1,336,0)
a. Choose the Install Package(s) option to start the patch
"BLD",8715,1,337,0)
install.
"BLD",8715,1,338,0)
b. When prompted for the "Select INSTALL NAME:" enter
"BLD",8715,1,339,0)
NEWBORN DG FB IB BUNDLE 1.0
"BLD",8715,1,340,0)
c. When prompted "Want KIDS to INHIBIT LOGONs during the install?
"BLD",8715,1,341,0)
NO//", answer NO
"BLD",8715,1,342,0)
d. When prompted "Want to DISABLE Scheduled Options, Menu Options,
"BLD",8715,1,343,0)
and Protocols? NO//", answer NO
"BLD",8715,1,344,0)
e. When prompted "Device: HOME//", enter HOME
"BLD",8715,1,345,0)
to display the Install message on the screen (or enter the
"BLD",8715,1,346,0)
device you want to print the Install message). You may
"BLD",8715,1,347,0)
queue the install if you wish.
"BLD",8715,1,348,0)
"BLD",8715,1,349,0)
"BLD",8715,1,350,0)
Post-Installation Instructions
"BLD",8715,1,351,0)
------------------------------
"BLD",8715,1,352,0)
"BLD",8715,1,353,0)
*** IMPORTANT NOTE ***
"BLD",8715,1,354,0)
Please note there are three post installation routines that may be
"BLD",8715,1,355,0)
deleted after successful installation of the NEWBORN DG FB IB BUNDLE 1.0.
"BLD",8715,1,356,0)
These are:
"BLD",8715,1,357,0)
"BLD",8715,1,358,0)
DG867PO
"BLD",8715,1,359,0)
FB146PO
"BLD",8715,1,360,0)
IB499PO
"BLD",8715,1,361,0)
"BLD",8715,1,362,0)
"BLD",8715,1,363,0)
Routine Information:
"BLD",8715,1,364,0)
====================
"BLD",8715,1,365,0)
The second line of each of these routines now looks like:
"BLD",8715,1,366,0)
;;5.3;REGISTRATION;**[Patch List]**;01-APR-13;Build 49
"BLD",8715,1,367,0)
"BLD",8715,1,368,0)
The checksums below are new checksums, and can be checked with
"BLD",8715,1,369,0)
CHECK1^XTSUMBLD.
"BLD",8715,1,370,0)
"BLD",8715,1,371,0)
Routine Name: DG867PO
"BLD",8715,1,372,0)
Before: n/a After: B481760 **867**
"BLD",8715,1,373,0)
Routine Name: DGDEP3
"BLD",8715,1,374,0)
Before: B29628067 After: B31937643 **45,624,653,688,867**
"BLD",8715,1,375,0)
Routine Name: DGPTAE01
"BLD",8715,1,376,0)
Before: B8773190 After: B9393836 **58,342,466,664,867**
"BLD",8715,1,377,0)
Routine Name: DGRP15
"BLD",8715,1,378,0)
Before: B4585956 After: B13096034 **114,239,568,867**
"BLD",8715,1,379,0)
Routine Name: DGRP2
"BLD",8715,1,380,0)
Before: B11254124 After: B12657362 **415,545,638,677,760,867**
"BLD",8715,1,381,0)
Routine Name: DGRP4
"BLD",8715,1,382,0)
Before: B7761202 After: B9074330 **624,867**
"BLD",8715,1,383,0)
Routine Name: DGRPC
"BLD",8715,1,384,0)
Before: B28027409 After: B32590756 **108,121,314,301,470,489,505,
"BLD",8715,1,385,0)
451,568,585,641,653,688,754,
"BLD",8715,1,386,0)
797,867**
"BLD",8715,1,387,0)
Routine Name: DGRPC3
"BLD",8715,1,388,0)
Before: B40710915 After: B55911726
"BLD",8715,1,389,0)
**451,632,673,657,688,754,797,867**
"BLD",8715,1,390,0)
Routine Name: DGRPCF
"BLD",8715,1,391,0)
Before: B24182202 After: B26163167 **250,653,786,754,867**
"BLD",8715,1,392,0)
"BLD",8715,1,393,0)
Routine list of preceding patches: 664, 760, 797
"BLD",8715,4,0)
^9.64PA^38.6^3
"BLD",8715,4,38.6,0)
38.6
"BLD",8715,4,38.6,222)
y^n^f^^n^^y^m^n
"BLD",8715,4,38.6,224)
I $$INCO386^DG867PO($P(^(0),U))
"BLD",8715,4,43.4,0)
43.4
"BLD",8715,4,43.4,222)
y^n^f^^n^^y^m^n
"BLD",8715,4,43.4,224)
I $$ADMIT43^DG867PO($P(^(0),U))
"BLD",8715,4,391,0)
391
"BLD",8715,4,391,222)
n^n^f^^n^^y^m^n
"BLD",8715,4,391,224)
I $$PAT391^DG867PO($P(^(0),U))
"BLD",8715,4,"B",38.6,38.6)
"BLD",8715,4,"B",43.4,43.4)
"BLD",8715,4,"B",391,391)
"BLD",8715,6.3)
56
"BLD",8715,"ABPKG")
n
"BLD",8715,"INI")
"BLD",8715,"INID")
^n
"BLD",8715,"INIT")
POST^DG867PO
"BLD",8715,"KRN",0)
^9.67PA^779.2^20
"BLD",8715,"KRN",.4,0)
.4
"BLD",8715,"KRN",.401,0)
.401
"BLD",8715,"KRN",.402,0)
.402
"BLD",8715,"KRN",.403,0)
.403
"BLD",8715,"KRN",.5,0)
.5
"BLD",8715,"KRN",.84,0)
.84
"BLD",8715,"KRN",3.6,0)
3.6
"BLD",8715,"KRN",3.8,0)
3.8
"BLD",8715,"KRN",9.2,0)
9.2
"BLD",8715,"KRN",9.8,0)
9.8
"BLD",8715,"KRN",9.8,"NM",0)
^9.68A^9^8
"BLD",8715,"KRN",9.8,"NM",1,0)
DGRP15^^0^B13096034
"BLD",8715,"KRN",9.8,"NM",2,0)
DGRP4^^0^B9074330
"BLD",8715,"KRN",9.8,"NM",3,0)
DGRP2^^0^B12657362
"BLD",8715,"KRN",9.8,"NM",4,0)
DGDEP3^^0^B31937643
"BLD",8715,"KRN",9.8,"NM",5,0)
DGRPC^^0^B32590756
"BLD",8715,"KRN",9.8,"NM",6,0)
DGRPC3^^0^B55911726
"BLD",8715,"KRN",9.8,"NM",7,0)
DGRPCF^^0^B26163167
"BLD",8715,"KRN",9.8,"NM",9,0)
DGPTAE01^^0^B9393836
"BLD",8715,"KRN",9.8,"NM","B","DGDEP3",4)
"BLD",8715,"KRN",9.8,"NM","B","DGPTAE01",9)
"BLD",8715,"KRN",9.8,"NM","B","DGRP15",1)
"BLD",8715,"KRN",9.8,"NM","B","DGRP2",3)
"BLD",8715,"KRN",9.8,"NM","B","DGRP4",2)
"BLD",8715,"KRN",9.8,"NM","B","DGRPC",5)
"BLD",8715,"KRN",9.8,"NM","B","DGRPC3",6)
"BLD",8715,"KRN",9.8,"NM","B","DGRPCF",7)
"BLD",8715,"KRN",19,0)
19
"BLD",8715,"KRN",19,"NM",0)
^9.68A^^
"BLD",8715,"KRN",19.1,0)
19.1
"BLD",8715,"KRN",19.1,"NM",0)
^9.68A^^
"BLD",8715,"KRN",101,0)
101
"BLD",8715,"KRN",409.61,0)
409.61
"BLD",8715,"KRN",771,0)
771
"BLD",8715,"KRN",779.2,0)
779.2
"BLD",8715,"KRN",870,0)
870
"BLD",8715,"KRN",8989.51,0)
8989.51
"BLD",8715,"KRN",8989.52,0)
8989.52
"BLD",8715,"KRN",8994,0)
8994
"BLD",8715,"KRN","B",.4,.4)
"BLD",8715,"KRN","B",.401,.401)
"BLD",8715,"KRN","B",.402,.402)
"BLD",8715,"KRN","B",.403,.403)
"BLD",8715,"KRN","B",.5,.5)
"BLD",8715,"KRN","B",.84,.84)
"BLD",8715,"KRN","B",3.6,3.6)
"BLD",8715,"KRN","B",3.8,3.8)
"BLD",8715,"KRN","B",9.2,9.2)
"BLD",8715,"KRN","B",9.8,9.8)
"BLD",8715,"KRN","B",19,19)
"BLD",8715,"KRN","B",19.1,19.1)
"BLD",8715,"KRN","B",101,101)
"BLD",8715,"KRN","B",409.61,409.61)
"BLD",8715,"KRN","B",771,771)
"BLD",8715,"KRN","B",779.2,779.2)
"BLD",8715,"KRN","B",870,870)
"BLD",8715,"KRN","B",8989.51,8989.51)
"BLD",8715,"KRN","B",8989.52,8989.52)
"BLD",8715,"KRN","B",8994,8994)
"BLD",8715,"PRET")
"BLD",8715,"QDEF")
^^^^NO^^^^NO^^NO
"BLD",8715,"QUES",0)
^9.62^^
"BLD",8715,"REQB",0)
^9.611^2^2
"BLD",8715,"REQB",1,0)
DG*5.3*760^2
"BLD",8715,"REQB",2,0)
FB*3.5*147^2
"BLD",8715,"REQB","B","DG*5.3*760",1)
"BLD",8715,"REQB","B","FB*3.5*147",2)
"DATA",38.6,313,0)
NEWBORN REQUIRES SPONSOR^Newborn Sponsor is Missing^0^0^0^0
"DATA",38.6,314,0)
NEWBORN NEEDS ELIGIBLE SPONSOR^NEWBORNS REQUIRE AN ELIGIBLE SPONSOR^0^0^0^0
"DATA",38.6,314,"D",0)
^38.61^2^2^3130605^^
"DATA",38.6,314,"D",1,0)
This check is to ensure the Newborn being registered is attached to an
"DATA",38.6,314,"D",2,0)
eligible mother.
"DATA",43.4,202,0)
NON-VA FOR FEMALE VET+NEWBORN^^17.38^0
"DATA",391,15,0)
NEWBORN OF VETERAN^1^^0^0
"DATA",391,15,8.2)
1
"DATA",391,15,"E")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^0^0^^^^^^^^^^^^^^^^^^^0^0^0^0^0^0^0^0^^^0^0^^0^^^^^^^^^0^^^^^^^^0^0
"DATA",391,15,"E10")
0^0
"DATA",391,15,"S")
^^1^0^1^0^0^1^0^0^1
"FIA",38.6)
INCONSISTENT DATA ELEMENTS
"FIA",38.6,0)
^DGIN(38.6,
"FIA",38.6,0,0)
38.6s
"FIA",38.6,0,1)
y^n^f^^n^^y^m^n
"FIA",38.6,0,10)