-
Notifications
You must be signed in to change notification settings - Fork 4
/
PackageCategories.json
1766 lines (1762 loc) · 87.1 KB
/
PackageCategories.json
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
{
"name": "VistA",
"children": [
{
"name": "Deliver Health Care",
"children": [
{
"name": "Manage Health Records",
"children": [
{
"name": "Capture Patient Care Encounter Information",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Automated Information Collection System",
"description": "The module supports outpatient clinical efforts through the creation and printing of encounter forms that display relevant clinical information, and provides for the entry of clinical encounter data for local and national needs",
"vdl": "https://www.va.gov/vdl/application.asp?appid=30"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Problem List",
"description": "The module is used to document and track a patient's problems. It provides the clinician with a current and historical view of patient's health care problems, and allows each identified problem to be traced in terms of treatment, test results, and outcome",
"vdl": "https://www.va.gov/vdl/application.asp?appid=64"
}
]
},
{
"name": "Maintain Patient Summmary List",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Health Summary",
"description": "The module is a clinically oriented and structured report that extracts many kinds of data from VistA and and displays it in a defined and standard format",
"vdl": "https://www.va.gov/vdl/application.asp?appid=63"
}
]
},
{
"name": "Track Incomplete Records",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Incomplete Records Tracking",
"description": "The module provides the medical center the ability to monitor incomplete records. Interim summaries, discharge summaries, and both inpatient and outpatient operation reports are tracked. Records may be incomplete or deficient for one or more of the following reasons - not dictated, not transcribed, not signed, or not reviewed",
"vdl": "https://www.va.gov/vdl/application.asp?appid=124"
}
]
},
{
"name": "Manage Referrals",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Consult Request Tracking",
"description": "The module provides an efficient way for clinicians to order consultations andprocedures from other providers or services within the VHA system, at their own facility or another facility.",
"vdl": "https://www.va.gov/vdl/application.asp?appid=62"
}
]
},
{
"name": "Manage Notes",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Text Integration Utility",
"description": "The module simplifies the use and management of clinical documents for both clinical and administrative medical facility personnel",
"vdl": "https://www.va.gov/vdl/application.asp?appid=65"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Authorization Subscription",
"description": "This module provides a method for identifying who is authorized to perform various actions on clinical documents. These actions include signing, co-signing and amending",
"vdl": "https://www.va.gov/vdl/application.asp?appid=58"
}
]
},
{
"name": "Release of Information",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Release Of Information - DSSI",
"description": "This module (COTS product by DSS, inc.) is designed to expedite Release of Information (ROI) requests. It supports the tracking, fulfilling and releasing of ROI requests electronically",
"vdl":"https://www.va.gov/vdl/application.asp?appid=132",
"gui": "Windows application - Release of Information Manager v5.0"
}
]
}
]
},
{
"name": "Provide Ancillary Services",
"children": [
{
"name": "Provide Blood Service",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "VBECS",
"description": "The main purpose of VistA Blood Establishment Computer Software (VBECS) is to automate the daily processing of blood inventory and patient transfusions in a hospital transfusion service",
"vdl": "https://www.va.gov/vdl/application.asp?appid=182"
}
]
},
{
"name": "Provide Extended Care",
"children": [
{
"name": "Provide Extended Non-Institutional Care",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Hospital Based Home Care",
"description": "The Home Based Primary Care (HBPC) module is designed to allow for the local entry and verification and data management of HBPC patient-related data",
"vdl": "https://www.va.gov/vdl/application.asp?appid=68"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Integrated Home Telehealth",
"description": "The module integrates vendor-supported Home Telehealth services into the VistA medical information infrastructure. VistA communicates patient info to third party vendor via HL7",
"vdl":"https://www.va.gov/vdl/application.asp?appid=154"
}
]
}
]
},
{
"name": "Provide General Laboratory Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Automated Lab Instruments",
"description": "The module provides the interface to automated lab instruments; this include the Laboratory Universal Interface which uses the HL7 to communicate with all instruments",
"vdl":"https://www.va.gov/vdl/application.asp?appid=120"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "National Laboratory Test",
"description": "The National Laboratory Test Documents establish a standard coding across documents in an effort to unite laboratory records",
"vdl": "https://www.va.gov/vdl/application.asp?appid=119"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Lab Service",
"description": "The module is a clinically oriented system designed to provide lab data to health care personnel. It assists the Pathology and Laboratory Medicine Service (P&LMS) in managing and automating the workload and reporting process",
"vdl": "https://www.va.gov/vdl/application.asp?appid=71",
"primaryfunction": "Yes"
}
]
},
{
"name": "Provide Imaging Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Imaging",
"description": "The module facilitates medical decision-making by delivering complete multimedia patient information to the clinician's desktop in an integrated manner. Windows-based workstations, which are interfaced to the main hospital system in a client-server architecture, make images and associated text data available at all times anywhere in the hospital or across VA",
"vdl": "https://www.va.gov/vdl/application.asp?appid=105",
"gui": "Windows applications include VistARAD for radiologist, TeleReader, Clinical Display for clinician, and Clinical Capture. Web browser include Advanced Web Image Viewer"
}
]
},
{
"name": "Provide Nutrition and Food Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Dietetics",
"description": "The Nutrition and Food Service (N&FS) software integrates the automation of many Clinical Nutrition, Food Management, and Management Reports functions. The Clinical N&FS activities of Nutrition Screening, Nutrition Assessment, Diet Order Entry, Tube Feeding and Supplemental Feeding Orders, Patient Food Preferences, Specific Diet Pattern Calculations, Nutrient Analysis of meals, Consult Reporting, Encounter Tracking, and Quality Care Monitoring are all available in this program.",
"vdl": "https://www.va.gov/vdl/application.asp?appid=67"
}
]
},
{
"name": "Provide Pathology Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Lab Service",
"description": "The Anatomic Pathology module, part of the Lab Service package, automates record keeping and reporting for all areas of Anatomic Pathology (i.e., Surgical Pathology (SP), Cytopathology, Electron Microscopy (EM), and Autopsy)",
"vdl": "https://www.va.gov/vdl/application.asp?appid=72",
"primaryfunction": "No"
}
]
},
{
"name": "Provide Pharmacy Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Inpatient Medications",
"description": "The module integrates functions from the Intravenous (IV) and Unit Dose (UD) modules. The IV module provides pharmacists and their staffs with IV labels, manufacturing worksheets, ward lists for order updates, and management reports. The UD module provides a standard computerized system for dispensing and managing inpatient medications",
"vdl": "https://www.va.gov/vdl/application.asp?appid=88"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Auto Replenishment Ward Stock",
"description": "The Automatic Replenishment/Ward Stock (AR/WS) package provides a method to track drug distribution and inventory management within a medical center",
"vdl": "https://www.va.gov/vdl/application.asp?appid=83"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Pharmacy Enterprise Customization System",
"description": "PECS allows users to customize the contents of a number of pharmacy-related information sets. It is used to research, review, report, and manage customized drug information from First Data Bank's (FDB) MedKnowledge Framework",
"vdl": "https://www.va.gov/vdl/application.asp?appid=204",
"gui": "Browser based J2EE application"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Outpatient Pharmacy",
"description": "The module provides a method for managing the medications given to Veterans who have visited a clinic or who have received prescriptions upon discharge from the hospital",
"vdl": "https://www.va.gov/vdl/application.asp?appid=90"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Controlled Substances",
"description": "The module provides functionality to monitor and track the receipt, inventory, and dispensing of all controlled substances",
"vdl": "https://www.va.gov/vdl/application.asp?appid=86"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Drug Accountability",
"description": "The module works toward perpetual inventory for each VA medical facility pharmacy by tracking all drugs through pharmacy locations",
"vdl": "https://www.va.gov/vdl/application.asp?appid=87",
"gui": "Mostly roll and scroll UI with a Windows GUI application - PSA_MCKESSON_UPLOAD GUI for upload McKesson invoice data to VistA"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Pharmacy Product System - National",
"description": "The module is a Web-based application that allows select members of the Department of Veterans Affairs (VA) Pharmacy Benefits Management (PBM) Services to create and revise pharmacy drug information",
"vdl": "https://www.va.gov/vdl/application.asp?appid=202",
"gui": "Browser based Java application on Weblogic platform"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Pharmacy Data Management",
"description": "The Pharmacy Data Management (PDM) package provides tools for managing site configurable data in pharmacy files",
"vdl": "https://www.va.gov/vdl/application.asp?appid=93"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "National Drug File",
"description": "The National Drug File (NDF) package provides standardization of the local drug files in all VA medical facilities. Standardization includes the adoption of new drug nomenclature and drug classification, as well as linking the local drug file entries to data in the National Drug files",
"vdl":"https://www.va.gov/vdl/application.asp?appid=89"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "CMOP",
"description": "The Consolidated Mail Outpatient Pharmacy (CMOP) package provides a regional system resource to expedite the distribution of mail-out prescriptions to veteran patients. CMOP host facilities, regionally located, receive data from medical centers within the area of service. Current CMOPs are designed to handle the dispensing and mailing of between 20,000 and 40,000 prescriptions in an 8-hour workday",
"vdl": "https://www.va.gov/vdl/application.asp?appid=85"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Pharmacy Benefits Management",
"description": "The module extracts medication dispensing data elements from numerous locations and makes reports available allowing projections of local drug usage and identification of potential accountability problem areas. The extracted data is transmitted to the PBM using VA Mailman. The Pharmacy Benefits Management (PBM) database that collects information on medication dispensed to both inpatient and outpatient veterans who receive care from the VA is housed at the Hines Information Technology Center (HITC)",
"vdl": "https://www.va.gov/vdl/application.asp?appid=91"
}
]
},
{
"name": "Provide Radiology Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Radiology Nuclear Medicine",
"description": "This module automates the entire range of diagnostic functions performed in imaging departments, including order entry of requests, registration of patients for exams, processing of exams, recording of reports/results, verification of reports on-line, displaying/printing results for clinical staff, automatic tracking of requests/exams/reports, and generation of management statistics/reports, both recurring and ad hoc",
"vdl": "https://www.va.gov/vdl/application.asp?appid=98"
}
]
},
{
"name": "Provide Rehabilitation Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Functional Independence",
"description": "The module provides an integration of Functional Independence Measures (FIM) assessments into the Computerized Patient Record System (CPRS) and into the Functional Status and Outcomes Database (FSOD) at the VA Austin Information Technology Center (AITC). The FIM is an 18-item, 7-level functional assessment designed to evaluate the amount of assistance required by a person with a disability to perform basic life activities safely and effectively",
"vdl": "https://www.va.gov/vdl/application.asp?appid=134",
"gui": "Windows Delphi client - FIM.exe"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Prosthetics",
"description": "The module automates purchasing. The Prosthetics module enhances patient care by determining what prosthetic services and devices have been provided to the Veteran in the past, and decreasing the time required for the order, delivery, and/or repair of devices",
"vdl":"https://www.va.gov/vdl/application.asp?appid=96",
"gui": "Windows Delphi client - Prosthetics Application Suite - ProsMenu.exe"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Visual Impairment Service Team",
"description": "With this module, Visual Impairment Service Teams are able to easily manage and track activities and services provided to blind Veterans in their service area. This program integrates several fields of patient data to produce a variety of reports. The VIST patient record printout can be used in place of VA Form (10-1371) and is a more versatile document than the card. Semi- annual Automated Management Information System (AMIS) reports can be run and Veterans can be added or deleted from the rolls as indicated",
"vdl": "https://www.va.gov/vdl/application.asp?appid=106"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Quasar",
"description": "Quality Audiology and Speech Analysis and Reporting (QUASAR) is a VistA software package written for the Audiology and Speech Pathology Service. QUASAR is used to enter, edit, and retrieve data for each episode of care",
"vdl": "https://www.va.gov/vdl/application.asp?appid=97",
"gui": "Windows Delphi client - ACKQROES3.exe & ACKQROES3E.exe"
}
]
},
{
"name": "Provide Social Work Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Social Work",
"description": "The module is designed to facilitate the Social Work Service functions within a medical facility and is composed of Case Management, Clinical Assessment, and Community Resource",
"vdl": "https://www.va.gov/vdl/application.asp?appid=101",
"status":"Identified for decommissioning"
}
]
}
]
},
{
"name": "Provide Care Management",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Care Management",
"description": "The module is the first application to offer a convenient way for health care providers to view on a single screen, pertinent information about multiple patients",
"vdl": "https://www.va.gov/vdl/application.asp?appid=138",
"gui": "Browser GUI (HealtheVetDesktopLauncher - shortcut) with Java backend"
}
]
},
{
"name": "Provide Medical Services",
"children": [
{
"name": "Adminster Medication",
"children":[
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Barcode Medication Administration",
"description": "Bar Code Medication Administration (BCMA) software provides a real-time, point-of- care solution for validating the administration of Unit Dose (UD) and Intravenous (IV) medications to inpatients and outpatients in Veterans Administration Medical Centers",
"vdl":"https://www.va.gov/vdl/application.asp?appid=84",
"gui":"Windows Delphi client - BCMA.exe & BCMApar.exe"
}
]
},
{
"name": "Manage Orders",
"children":[
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Order Entry Results Reporting",
"description": "The module Computerized Patient Record System (CPRS) enables you to enter, review, and continuously update allinformation connected with any patient",
"vdl":"https://www.va.gov/vdl/application.asp?appid=61",
"gui":"Windows Delphi client - CPRSChart.exe, Anticoagulation Management Tool (AMT) - ANTICOAGULATE.EXE",
"gui-vdl":"https://www.va.gov/vdl/application.asp?appid=188"
}
]
},
{
"name": "Monitor Patient Clinical Measurements",
"children":[
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Clinical Procedures",
"description": "The module passes final patient results, using Health Level 7 (HL7) messaging, between vendor clinical information systems (CIS) and VistA. Patients' test results or reports are displayed through the Computerized Patient Record System (CPRS)",
"vdl":"https://www.va.gov/vdl/application.asp?appid=139",
"gui":"Windows Delphi clients - CPFlowsheet.exe, CPConsole.exe, CPGatewayService.exe, Hemodialysis.exe"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "General Medical Record - Vitals",
"description": "The module is designed to store, in the patient's electronic health record, all vital signs and various measurements associated with a patient's hospital stay or outpatient clinic visit. Data entered can be accessed by several VistA applications (e.g., Health Summary) that interface with the Vitals/Measurements application",
"vdl": "https://www.va.gov/vdl/application.asp?appid=107",
"gui": "Windows Delphi clients - Vitals.exe & VitalsManager.exe"
}
]
},
{
"name": "Perform Compensation and Pension Medical Examinations",
"children":[
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Automated Medical Information Exchange",
"description": "The Automated Medical Information Exchange (AMIE) module facilitates the electronic interchange of veteran information between Veteran Benefits Administration (VBA) Regional Offices (ROs) and VA medical facilities",
"vdl": "https://www.va.gov/vdl/application.asp?appid=31",
"gui":"Windows Delphi client - Compensation and Pension Record Interchange (CAPRI) - CAPRI.exe",
"gui-vdl": "https://www.va.gov/vdl/application.asp?appid=133"
}
]
},
{
"name": "Perform Patient Care Encounter",
"children":[
{
"name": "Provide Patient Assessment",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Patient Assessment Documentation",
"description": "The module enables Registered Nurses (RNs) to document, in a standardized format, patient care during an inpatient stay. Although the content is standardized for use across the VA system, some parameters can be set to support the unique processes at individual medical centers",
"vdl":"https://www.va.gov/vdl/application.asp?appid=193",
"status": "Class 3 software, not supported nationally"
}
]
},
{
"name": "Determine Allergies and Adverse Reactions",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Adverse Reaction Tracking",
"description": "The module provides a common and consistent data structure for adverse reaction data. This module has options for data entry and validation, supported references for use by external software modules, and the ability to report adverse drug reaction data to the Food and Drug Administration (FDA)",
"vdl":"https://www.va.gov/vdl/application.asp?appid=57",
"gui":"Windows Delphi client - CPRSChart.exe"
}
]
},
{
"name": "Document Patient Encounter",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "PCE Patient Care Encounter",
"description": "The Patient Care Encounter (PCE) captures clinical data resulting from ambulatory care patient encounters. The data includes captured clinical data documents encounters and related encounter information, problems treated during the encounter, procedures done, immunizations, patient education, service connection, and skin tests",
"vdl":"https://www.va.gov/vdl/application.asp?appid=82",
"gui":"Windows Delphi client - CPRSChart.exe"
}
]
}
]
},
{
"name": "Provide Emergency Health Care",
"children":[
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Emergency Department Integration Software",
"description": "Emergency Department Integration Software (EDIS) incorporates several Web-based views that extend the current Computerized Patient Record System (CPRS) to help healthcare professionals track and manage the flow of patient care in the emergency department setting",
"vdl":"https://www.va.gov/vdl/application.asp?appid=179",
"gui": "Web application based on Jave/WebLogic platform - brower GUI uses Adobe Flash Player"
}
]
},
{
"name": "Provide Mental Health Services",
"children":[
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Mental Health",
"description": "Psychiatrists and psychologists have directed this VistA module's design with active input from all health care disciplines, guided by the principle of creating software that makes the clinician's job easier and leads to better patient care. A by-product of this approach has been the creation of a clinical database, which is useful to mental health program managers in many ways, including evaluating clinical productivity, monitoring and improving the quality of care, and trending various patient care events. This clinical database package is comprehensive and accessible from workstations throughout medical facilities",
"vdl": "https://www.va.gov/vdl/application.asp?appid=78",
"gui": "Windows Delphi client - YS_MHA.exe and Veteran Crisis Line - a .NET MDWS based web application"
}
]
},
{
"name": "Provide Specialty Care",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Spinal Cord Dysfunction",
"description": "The Spinal Cord Injury and Disorders Outcomes (SCIDO) 3.0 application converts the Spinal Cord Dysfunction (SCD) Registry from a legacy command line system to a client server platform with a graphical user interface (GUI) and enhanced capabilities",
"vdl":"https://www.va.gov/vdl/application.asp?appid=196",
"status": "Decommissioned",
"gui": "Browser based web application"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Medicine",
"description": "The module serves clinical services and maximizes the use of the data within VistA VAMC database. The module allows entry, edit, and viewing of data for many medical tests and procedures. Medicine components include: Cardiology, Pulmonary, Gastrointestinal, Hematology, Pacemaker, Rheumatology, and Generalized Procedure.",
"vdl":"https://www.va.gov/vdl/application.asp?appid=77"
}
]
},
{
"name": "Provide Surgery",
"children":[
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Surgery",
"description": "The module is designed to be used by Surgeons, Surgical Residents, Anesthetists, Operating Room Nurses and other surgical staff. The Surgery package is part of the patient information system that stores data on the VA patients who have, or are about to undergo, surgical procedures. This package integrates booking, clinical, and patient data to provide a variety of administrative and clinical reports",
"vdl":"https://www.va.gov/vdl/application.asp?appid=103"
}
]
}
]
},
{
"name": "Provide Clinical Decision Support",
"children": [
{
"name": "Deliver Alerts for Patient Care",
"children": [
{
"name": "CDS - Clinical Reminders",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Clinical Reminders",
"description": "The module provides relevant information to providers at the point of care, for clinical decision-making",
"vdl": "https://www.va.gov/vdl/application.asp?appid=60",
"gui": "Windows Delphi client - CPRSChart.exe"
}
]
},
{
"name": "Monitor Clinical Activity",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Clinical Monitoring System",
"description": "The module captures data for patients meeting specified conditions and alerts users when important thresholds or dates are met",
"vdl": "https://www.va.gov/vdl/application.asp?appid=32"
}
]
}
]
}
]
},
{
"name": "Provide Dentistry",
"children": [
{
"name": "Provide Dental Care Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Dental",
"description": "The module AKA: Dental Record Manager (DRM) is a proprietary software from DSS. It superceded the original DENT module in 2001. It provides a customized user-friendly Windows interface for entering clinical encounter information and assisted with the assessment of ongoing care using current patient data for completed procedures",
"vdl":"https://www.va.gov/vdl/application.asp?appid=66",
"gui":"Windows Delphi client - dentalmrmtx.exe"
}
]
}
]
},
{
"name": "Provide Nursing Services",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Nursing Service",
"description": "The module is comprised of multiple modules (i.e., Administration, Clinical, Education, Performance Improvement, and Research)",
"vdl":"https://www.va.gov/vdl/application.asp?appid=80"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "General Medical Record - Generator",
"description": "The module, AKA Text Generator, provides utilities used by the Nursing package to create nursing care plans",
"vdl": "Not Available"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "General Medical Record - IO",
"description": "The Intake and Output (I&O) module used by the nursing package is designed to store, in the patient's electronic health record, all patient intake (e.g., oral fluids, tube feedings, intravenous fluids, irrigations, etc.) and patient output (e.g., excreted patient material such as urine, nasogastric secretions, emesis, drainage, liquid feces/stool, etc.) information associated with a hospital stay or outpatient visit",
"vdl":"https://www.va.gov/vdl/application.asp?appid=70"
}
]
}
]
},
{
"name": "Manage Business Enabling Services",
"children": [
{
"name": "Manage Acquisitions",
"children": [
{
"name": "Acquire Assets, Equipment, and Supplies",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Engineering",
"description": "Engineering, also known as Automated Engineering Management System/Medical Equipment Reporting System (AEMS/MERS), facilitates the management of information needed to effectively discharge key operational responsibilities normally assigned to VA engineering organizations, such as Work Orders, Equipment Management, Program Management and Space/Facility Management",
"vdl":"https://www.va.gov/vdl/application.asp?appid=37"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Remote Order Entry System",
"description": "The module is the front-end of the Denver Acquisition & Logistics Center (DALC) supply chain/order fulfillment production system. ROES is used by clinicians to place orders for certain types of medical products and services that are maintained under contract by the DDC",
"vdl": "Not Available"
}
]
}
]
},
{
"name": "Manage Human Resources",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "PAID",
"description": "This module is comprised of the Enhanced Time and Attendance system and the Education Tracking system",
"vdl":"https://www.va.gov/vdl/application.asp?appid=51",
"status": "Identified for decommissioning"
}
]
},
{
"name": "Manage VHA-Wide Administrative Services",
"children": [
{
"name": "Provide Security Service",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Police and Security",
"description": "Police Service personnel at all Veterans Affairs facilities nationwide are now using the national VA Police and Security (VAPS) system for their record keeping",
"vdl": "https://www.va.gov/vdl/application.asp?appid=52",
"status": "Decommissioned as of 10/14/09"
}
]
}
]
},
{
"name": "Provide Enterprise Reporting",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Event Driven Reporting",
"description": "No documentation exist. The file 705 is a temporary repository for events that will be sent to the central system via HL7",
"vdl": "None",
"status": "Unknown - likely decommissioned sometime ago"
}
]
},
{
"name": "Provide Financial Management",
"children": [
{
"name": "Manage Collections and Receivables",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Accounts Receivable",
"description": "The module automates the debt collection process and a billing module is available to create statements for non-medical care debts",
"vdl": "https://www.va.gov/vdl/application.asp?appid=55"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Integrated Billing",
"description": "The module provides all the features necessary to create first party (patient) and third party (insurance carriers/Medicare) bills",
"vdl": "https://www.va.gov/vdl/application.asp?appid=45"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "E Claims Management Engine",
"description": "The module (AKA: ePharmacy) provides the ability to create and distribute electronic Outpatient Pharmacy claims to insurance companies on behalf of VHA Pharmacy prescription beneficiaries in a real-time environment",
"vdl": "https://www.va.gov/vdl/application.asp?appid=141"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Fee Basis",
"description": "The module supports VHA's Fee for Service program, which is care authorized for veterans who are legally eligible and are in need of care that cannot feasibly be provided by a VA facility",
"vdl": "https://www.va.gov/vdl/application.asp?appid=40"
}
]
},
{
"name": "Manage Payments",
"children": [
{
"name": "Diagnostic Related Grouper",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "DRG Grouper",
"description": "The module groups diagnostic and operation/procedure codes into the DRGs based on the combination of codes, age, sex, discharge status, and occurrence of death",
"vdl": "https://www.va.gov/vdl/application.asp?appid=36"
}
]
},
{
"name": "Benefit Claims Processing",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Beneficiary Travel",
"description": "The module provides the ability to perform the functions involved in issuing beneficiary travel pay",
"vdl": "https://www.va.gov/vdl/application.asp?appid=123",
"status": "Identified for decommissioning"
}
]
}
]
},
{
"name": "Provide Accounting Services",
"children": [
{
"name": "Provide Veteran Personal Finance Management",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Integrated Patient Fund",
"description": "The module (known as the Veterans Personal Finance System (VPFS)) automates the (bank-like) functionality that VA provides for patients to manage their personal funds while hospitalized in a VA medical facility",
"vdl": "https://www.va.gov/vdl/application.asp?appid=170",
"status": "Replaced by the VPFS system",
"gui": "Browser based J2EE application"
}
]
},
{
"name": "Provide Fund Control",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "IFCAP",
"description": "The Integrated Funds Distribution, Control Point Activity, Accounting and Procurement (IFCAP) automates the written regulations and policy for VA funds and procurement",
"vdl": "https://www.va.gov/vdl/application.asp?appid=42"
},
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],
"name": "Equipment Turn-In Request",
"description": "The module provides additional functionality within the IFCAP package, including the ability to enter an electronic request for new, non-expendable equipment and replacement equipment",
"vdl":"https://www.va.gov/vdl/application.asp?appid=113"
}
]
},
{
"name": "Track and Report Data",
"children": [
{
"distribution": [
"OSEHRA",
"VA",
"DSS"
],