-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcurrentConstants.txt
13234 lines (13234 loc) · 433 KB
/
currentConstants.txt
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
A
A check number or claim number to identify the payment
A claim must be selected to enable this menu.
A client certificate for the admin user
A Clinical Decision Rule is patient specific information that is filtered and presented at appropriate times to enhance health and health care
A clinical document is attached
A clinical document is attached.
A code of this type is already selected. Erase the field first if you need to replace it.
A dated reminder message can be either forwarded by clicking the Forward button or removed from the dated reminders list by clicking on the Set As Completed button
A dedicated security key needs to be purchased
A default code is optional as the needed code can be entered at the time of placing the actual order
A detailed guide on how to enable and setup a Clinical Decision rule is found here
A distributor is required
A due date can be specified or a specific time period can be chosen for the dated reminder to to show up
A few words to indicate the reason for the visit
A followup appointment can also be scheduled right from the fee sheet.
A GCAC visit form should be added to this visit.
A HL7 v2.x message simply consists of several lines of text, each line is called a segment and is further divided into fields by using the pipe (|) character
A large application like openEMR is used by a multitude of users with varying roles and degrees of responsibility. It is imperative that access to various parts of the program be granted to users on a need to know basis. To achieve this - Access Control Lists (ACL) are used.
A lot number is required
A lot number is required!
A lowercase letter
A New Appointment
A new feature helps to group frequently ordered tests so that they can be ordered together
A new message can thus be sent to a single or multiple users and/or can be about a single or multiple patients
A new patients credentials could not be sent after portal registration.
A new tab sub menu will be visible at the top of the Message center page
A number
A Patient Must Be Selected to Generate This Report
A patient with this ID already exists.
A patient with this name already exists.
A patient with this SS already exists.
A Payment is Required!. Please input a payment line item entry.
A place to document and display the patient's past medical history, family history, personal history
A popup box will alert you about success or failure
A positive number will show that many past appointments on a Widget in the Patient Summary screen (a negative number will show the past appointments in descending order)
A positive number will show that many past appointments on a Widget in the Patient Summary screen.
A product was selected but there is no product section in this form.
A provider or warehouse can be selected in the dropwdown box. For this option to be displayed 'Support provider in line item in fee sheet' box must be checked in Administration > Globals> Billing page
A quantity is required
A Recurring Appointment. Please contact your appointment desk for any changes.
A Referral has an additional action - to print the referral or save it as a pdf file
A Referral is the most common type of transaction
A referral source may be specified for each visit.
A related IPPF code is required!
A secure (HTTPS) web connection is required for U2F
A short description of this group that will appear when you hover over the newly created group (ARO).
A short description of this group, Serum chemistry tests
A short description of this procedure or result code
A signature is required for this document. Please sign document where required
A source lot is required
A special character
A standardized form called the Health Insurance Claim Form is used to submit claims
A third alternative is to scan the results and save it as a document - TIFF, JPEG or PDF in the patient's chart under documents
A two tabbed form will be revealed
A unique value to identify this field, not visible to the user
A useful start would be to obtain a paper lab slip from a few labs and look at the way the tests are organized on the lab slip
A valid UDI has not been processed yet.
A visit already exists for this group today. Click Cancel to open it, or OK to proceed with creating a new one.
A visit already exists for this patient today. Click Cancel to open it, or OK to proceed with creating a new one.
A warehouse is required
a.c.
a.m.
A/C{{anterior chamber}}
A/F Level Right:
AAA Segments
AB
Abbreviation
Abcess:
Abdominal
Able to Bear Weight four (4) steps:
Abn
ABN is required but not signed!
ABN Status
ABN1
ABNL
Abnormal
Abnormal Blood Test
Abnormal Hair Growth
Abnormal Mammogram
Abort
Aborted since querystring hash was invalid
Aborted since unable to complete transaction
Aborted since unable to obtain token
Aborted since unable to submit transaction
Abortion
Abortion Issues
Abortion Method
Abortion-Related Categories
Abortions
About
About Portal Dashboard
About the calendar
About Your Portal
Above upper panic limits
Absences by Diagnosis
Absolute path to node binary
Accept
Accept Assignment
Accept Credit Card transactions from Front Payments
Accept Payment
Accept Payment for
Accept Payment for
Accepts Assignment
Access can be given to other groups by editing User Memberships or Groups and Access Controls in Administration > ACL
Access Control
Access Control List Administration
Access Control List Help
Access Control Lists
Access core data set of patient information at the beginning of an encounter
Access date
Access denied
Access is then granted selectively to portions of the program on a need to know basis.
access not allowed
Access not allowed
Access Not Authorized
Access Tokens
Access Your Medical Records
Access Your Patient Portal
Accident
Account
Account Id
Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.
Account Id issued for Weno eRx service.
Account Id issued for Your clinics eRx service.
Account is validated. Send new credentials?
Account Name
Account Name issued for NewCrop eRx service.
Account Password issued for NewCrop eRx service.
Account Registration
Accounting
Accounting (acct)
Accounting Transactions Export
Accounting transactions export to CSV
Accountings
Acct
ACD{{anterior chamber depth}}
Aches
Acknowledge as my Electronic Signature
Acknowledgment Requested (ISA14)
Acknowledgments, Licensing and Certification
ACL
ACL Administration
ACL Administration (acl)
ACL Administration Not Authorized
ACL check failed
ACL Fine Granular Control
ACL Updated Successfully
Acne
ACO
ACOM{{Anterior Segment}}
Act
Act Date
Action
Action Taken
Action Taken Time
Action User
Actions
Activate
Activate CCR/CCD Reporting
activate to sort column ascending
activate to sort column descending
Activate UB04/837I Claim Support
Activates custom work flow logic
Active
Active - By default any value added here will be set to Active, to prevent/remove an item from showing up in the drop-down list just uncheck and deactivate
Active Alert
Active Alert - that presents as a pop-up notification when a patient's chart is entered
Active Alert Rules
Active Alerts/Reminders
Active Chart
Active Codes
Active Directory - Domains Base
Active Directory - Domains Controllers
Active Directory - Suffix Of Account
Active Encounter
Active Issue Codes
Active lists
Active Messages
Active Patient
Active Plans
Active Templates
Active{{Appointment}}
Active{{Code}}
Active{{Drug}}
Active{{Issue}}
Active{{Item}}
Active{{Note}}
Active{{Plan}}
Active{{Service}}
Activity
Activity Type
Actual Receipts
Acuity
ACUITY
Acuity with Autorefraction
Acuity with Contact Lenses
Acuity with correction
Acuity with Cycloplegic Refraction
Acuity with Manifest Refraction
Acuity with Pinhole
Acuity without correction
Acute Intoxication/Withdrawal
Acute Manifestation of a Chronic Condition
Acute on Chronic
Ad Reviewed
Add
add
ADD
Add a Company
Add a condition
ADD A NEW RECALL
Add a New Recall
Add a note to the biller
Add a Pharmacy
Add all needed providers in a similar manner
Add all rules to plan
add an event for
Add as a new message
Add as a new note
Add as New
Add as new patient
Add Bottom Border Row
Add Buttons
Add Buttons for Special Chars,Texts to be Displayed on Top of the Editor for inclusion to the text on a Click
Add Category
Add Constant
Add Context
Add Copay
Add criteria
Add Custom Button
Add Data Bottom Border
Add desired privileges by moving items (ACOs) from the 'Inactive' column to the 'Active' column.
Add Diagnosis
Add Drug
Add Edit Transactions Help
Add encounter
Add Encounter
Add encounter/notes
Add Facility
Add Field
Add following lines to the Apache configuration file
Add Group
Add group
Add ICD Code
Add Immunization
Add is not authorized!
Add Issue
Add item to track
Add Language
Add Lot
Add manually
Add Missing Context Template.
Add Mode
Add modifiers for this field type. You may select more than one.
Add More Items
Add New
Add new
Add new category :
Add new certificates to the Apache configuration file
Add New Component
Add New Components
Add new database
Add New Entry
Add New Event
Add New Form
ADD NEW GROUP
Add New Group
Add New Issue
Add new lot and transaction
Add New Message
Add New Note
Add new note
Add New Partner
Add New Patient
Add New Plan
ADD NEW PLAN
Add New...
Add New{{Event}}
Add New{{Message}}
Add New{{Provider}}
Add new{{Rule}}
Add New{{Type}}
Add Note
Add Onsite Portal Activity
Add Package
Add Patient
Add Patient Record
Add Prescription
Add Procedure
Add Provider Number
Add Recall
Add Rehab
Add Row
Add Rule
Add the remaining codes, in order to do so the CPT code must already exist in the database
Add Time to Date
Add to
ADD TO EXISTING MESSAGE
Add To Existing Message
Add to History
Add to list
Add to Medication List
Add Top Level
Add Transaction
Add User
Add User To Group
Add.{{Additional Measurements}}
Add/Edit eRx
Add/Edit Issue
Add/Edit Patient Transaction
added
Adding
Adding a participant
Adding demographics is not authorized.
Adding item to track failed
Addison Syndrom
Addison Syndrome
Additional Attributes
Additional Data Points
Additional Date:
Additional Diagnosis:
Additional Findings
Additional functionality including the ability to send SMS text messages, automated phone dialing, emails etc. can be accessed by enabling the optional MedEx Communication Service
Additional help to fill out this form is available by hovering over labels of each box and clicking on the dark blue help ? icon that is revealed
Additional help to fill out this form is available by hovering over labels of each box and clicking on the dark blue help ? icon that is revealed. On mobile devices tap once on the label to reveal the help icon and tap on the icon to show the help section
Additional History
Additional history notes
Additional Info
Additional information about the individual pages can be found in their respective help files
Additional information may be available
Additional information to process paper claims
Additional Labs
Additional Notes
Additional Notes field is for local use in openEMR
Additional notes for this result or recommendation
Additional Notes:
Additional Notes:
additional scopes
Additional X-RAY Notes:
Additionally, the corresponding US Snomed Extension Package can be imported separately after installing the International (English version) Snomed Release
Additionally, to the right is a toggle to select if you want to use the pop out window or dialog editor. The window allows having multiple editors open at the same time where the dialog is more appropriate for making quick edits
Additonal Rx{{Additional glasses}}
addonly
addonly - can read and add but not modify
Addr Bk
Addr Book
Address
Address and Postal Code
Address and State
Address Book
Address book entry for the company performing this procedure
Address book entry for the distributor
Address book entry for the vendor
Address Book Types
Address Label
Address Labels
Address Line 1
Address Line 2
Address Only
Address, City, State and Postal Code
Address, City, State, Postal Code, Payer ID
Address, State and Postal Code
Address1
Address2
ADDRESSED TO
ADDRESSEE
ADD{{Bifocal Add}}
ADD{{Near Add}}
Adj
Adj Amount
Adj Amt
Adj Type
Adjust
Adjust Type
Adjustment
Adjustment Amt
Adjustment Reasons
Adjustment type is required for each line with an adjustment.
Adjustment type is required for every line item.
Adjustment value for code
Adjustment value for code
Adjustment, Consumption, Return, or Edit
Adjustments
Adjustments at Checkout
Adm adjust
Admin
Admin Email Address
Administer Via
Administer Via is not relevant in this context and can be left Unassigned
Administered
Administered By
Administered Date
Administered Site
Administration
Administration (admin)
Administration Site
Administrator Assign
Administrators
Administrators can do anything
Admit Date
Adnexa
Adopted Child
Adult Weight Screening and Follow-Up
Adult Weight Screening and Follow-Up (CQM)
Advance Directive
Advance Directives
Advance Directives Warning
Advance Options
Advanced
Advanced - Finer Access Control
Advantages and Disadvantages of TOTP and U2F
Advice
Afar
Affect normal
Afrikaans
after
after (PM)
After hrs calls
After migration from the old password mechanisms where passwords are stored in the users table without salt is complete, this flag should be set to false so that only authentication by the new method is possible
After performing above configurations, import the admin client certificate to the browser and restart Apache server (empty password).
After saving the PDF
After saving the PDF, click [View Log] to check for errors.
After saving the PDF, click[View Log] to check for errors.
After saving the TEXT file
After saving the TEXT file(s), click [View Log] to check for errors.
After saving the TEXT file(s), click[View Log] to check for errors.
After saving your batch
After saving your batch, click [View Log] to check for errors.
After saving your batch, click[View Log] to check for errors.
After that the Match column will show the selected patient ID, or 0 to create.
After the information is correctly entered, click the Save button.
After Uploading click the button "Import"
After Uploading, click "Import"
After you filled in the spreadsheet with the relevant ICD categories and ICD codes go to Administration > Lists. Select 'Service Category' from the dropdown box
After you have finished entering all the ICD 10 codes go to Adminstration > Lists and select 'Code Types' from the dropdown box. Select 'ICD10 Diagnosis' from the last dropdown box under ICD 10
AfterCare Planning
Afterwards however, you may change your portal credentials anytime from portal menu.
Again
Age
Age at death
Age By
Age Category
Age data is out of range.
Age Display Format
Age format for "age from" is not valid
Age format for "age up to" is not valid
Age From
Age in Years for Display Format Change
Age max
Age min
Age Range
Aging Columns
Aging Columns:
Aging Days
Akan
Albanian
Alcohol
Alcohol consumption
Alcohol Use
Alert
Alert Count
Alert Notice
Alert on and after birthday
Alert on and up to 28 days after birthday
Alert on patient birthday
Alert only on birthday
Alert Time
Alerts
Alerts Log
Alerts/Reminders
Alert{{Mental Status}}
ALEUT
All
ALL
all
All (Collated Format A)
All (Collated Format B)
All (Cumulative)
All Alerts
All Automated Measure Calculations (AMC)
All Categories
All Clinical Quality Measures (CQM)
All Codes
All credential fields are case sensitive!
All Dates
All Day
All day event
All demographics fields, with search and duplication check
All done.
All Encounters
All Facilities
All Injuries/Problems/Issues
All Labs
All Languages Allowed
All Messages
All Official Clinical Quality Measures (CQM) Measure Groups
All or part of the first name
All or part of the last name
All or part of the organization
All patient interactions in OpenEMR are linked to encounters
All Patients
All pending messages are displayed on the MY MESSAGES pane
All Product Types
All Products
All Providers
All Reviewed and Negative:
All scores have been cleared.
All search inputs are case sensitive and must match entries in your profile.
All sections are not required, rather, they are available based on the information a practitioner believes is critical data for the patient at any given moment in time
All set. Click Send Request below to finish registration
All set. Click Send Request below to finish registration.
All Topics
All TOTP authenticator apps use the same algorithm and secure hash function - HMAC-SHA1 to generate the unique key
All Transactions for the patient will appear on the Transactions page in descending order of its date of creation
All Users
All Warehouses
Allergic
Allergic to
Allergies
Allergies - will show the allergies listed under Issues > Allergies. If eRx is enabled the allergy list has to be entered on the eRx page
Allergies/Alerting Data
Allergies:
Allergy
Allergy import successfully completed
Allergy Issue List
Allergy Reaction
ALLERGY WARNING
Allergy Warning
Allocate
Allow
Allow Administrators to Delete Patients
Allow all available languages as choices on menu at login.
Allow Check In before the appointment's time.
Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.
Allow Debugging Language
Allow Double Click to select Nation Note text template from any encounter form text area
Allow Early Check In
Allow Email
Allow email messages?
Allow Email?
Allow Encounter Claims
Allow Encounter For Each Appointment
Allow Health Info Exchange
Allow Health Information Exchange
Allow Immunization Info Share
Allow Immunization Info Sharing
Allow Immunization Registry Use
Allow in person credit card payments using Stripe Verifone P400. Ensure Stripe gateway is enabled.
Allow institutional claims support.
Allow insurance eligibility checks using Office Ally
Allow Mail Message
Allow manual entry and authorise credit card payments. Ensure a gateway is enabled.
Allow more than one insurance
Allow More than one MA/IPPF code mapping
Allow multiple databases
Allow New Patient Registration Widget
Allow Notice
Allow Online Appointments
Allow Online Payments
Allow Online Secure Chat
Allow only one insurance
Allow Onsite New Patient Registration Widget
Allow Onsite Online Appointments
Allow Onsite Online Payments
Allow Onsite Online Secure Chat
Allow Onsite Patient Ledger
Allow Onsite Patient to make and view appointments online.
Allow Onsite Patient to make payments online.
Allow Onsite Patient to use Secure Chat Application.
Allow Onsite Patient to view their accounting ledger online.
Allow Onsite Patients to Reset Credentials
Allow Patient Flow Board to Select Patients for Drug Testing.
Allow Patient Ledger
Allow Patient Portal
Allow Patient to make and view appointments online.
Allow Patient to make payments online.
Allow Patient to use Secure Chat Application.
Allow Patient to view their accounting ledger online.
Allow Patients to Reset Credentials
Allow Postal Mail
Allow self-signed certificate for SSL (encrypted) connection to CouchDB
Allow SMS
Allow SMS (text messages)?
Allow Statement Exclusions from Printing
Allow submitted events to be made active instantly?
Allow telephone messages?
Allow to use with multiple database
Allow users to publish Global Events
Allow users to publish Personal Calendars
Allow Version 2 Onsite New Patient Registration Widget
Allow Version 2 Onsite Online Payments
Allow Version 2 Onsite Patient to make payments online.
Allow Version 2 Patients to Reset Credentials
Allow Voice Call
Allow Voice Message
Allowed
Allowed Languages
Allowed to discount prices (in Fee Sheet or Checkout form) (disc)
Allowed(c)
Allows E-Sign on the entire encounter
Allows E-Signing Individual Forms
Allows Mail
Allows Voice msgs
All{{Mails}}
All{{Recipients}}
Already a Care Plan form for this encounter. Using existing Care Plan form.
Already a Clinical Notes form for this encounter. Using existing Clinical Notes form.
Already at the top of the page
already exists
already exists! Please try again.
already exists.
Already registered
Already used, choose another identifier
Already used, choose another title
Also provides a short description of the visit in Patient Reports
Alt Address
Alt City
Alt Postal code
Alt State
alter
Alternate Cover Test
Alternatively a CPT code can be used. It is 84550 for Serum Uric Acid
Alternatively download a sample spreadsheet by clicking on the Download button
Alternatively it can be accessed by clicking in the Messages menu item in the top navigation bar
Alternatively you could clear all selections and select only the items that you want to be a part of the report
Alternatively, you may choose to upload an electronic remittance (X12 835) file that you have obtained from your payer or clearinghouse. You can do this by first selecting the 'ERA upload' option in the initial 'Select Method' section. This brings up the 'ERA Upload' Section.
Alternatively, you may use the search page to upload an electronic remittance (X12 835) file that you have obtained from your payer or clearinghouse. You can do this by clicking the Browse button and selecting the file to upload, and then clicking Search to perform the upload and display the corresponding invoices. In this case the other parameters mentioned above do not apply and will be ignored. Uploading saves the file but does not yet process its contents -- that is done separately as described below.
Although the HCFA-1500 originally was developed for submitting Medicare claims, it eventually was accepted by all commercial/ private insurance carriers to facilitate the standardization of the claims process
Always
AM
AM Program
Amblyopia
Ambulance - Air or Water
Ambulance - Land
Ambulatory Surgical Center
AMC
AMC Tracking
AMC-2011
AMC-2014
AMC-2014 Stage I
AMC-2014 Stage II
AMD{{age related macular degeneration}}
Amend Existing Message
Amend Existing Note
Amendment
Amendment From
Amendment List
Amendment Status
Amendments
Amendments (write,addonly optional)
Amendments (write,addonly optional) (amendment)
Amendments - Enable a user to electronically select the record affected by a patient’s request for amendment and either append the amendment to the affected record or include a link that indicates the amendment’s location
Amendments for
American Indian
American Indian or Alaska Native
AMEX
Amharic
Amount
Amount Administered
Amount Charged
Amount Charges
Amount Charges:
Amount Due
Amount for Past Balance
Amount for This Visit
Amount Paid
Amount:
Amplitudes
Amsler
Amt Billed
An appointment can be scheduled by clicking on the calendar icon in that cell
An e-mail with your new account credentials will be sent to the e-mail address supplied earlier. You may still review or edit any part of your information by using the top step buttons to go to the appropriate panels. If after receiving credentials and you have trouble with access to the portal, please contact administration.
An e-mail with your new account credentials will be sent to the e-mail address supplied earlier. You may still review or edit any part of your information by using the top step buttons to go to the appropriate panels. Note to be sure you have given your correct e-mail address. If after receiving credentials and you have trouble with access to the portal, please contact administration.
An electronic order and the returned result is in the form of a message called the HL7 message. HL7 stands for Health Level (Application Layer) 7. HL7’s prime objective is to simplify the implementation of interfaces between healthcare software applications and various vendors so as to reduce the pain and cost involved in custom interface programming
An end date later than the start date is required for repeated events!
An error occured signing the form
An error occurred while dumping OpenEMR web directory tree
An error occurred while dumping phpGACL web directory tree
An error occurred while dumping SQL-Ledger web directory tree
An error occurred: Missing file to upload. Returning to form.
An error occurred: Missing file to upload: Use back button!
An important concept to grasp is that once the secret key delivered via the QR code is captured by the authenticator app there is no further communication between the app and OpenEMR, each will use the current UNIX time and its copy of the user-specific shared secret key to generate the same unique 6 digit number
An important point to remember is that the various individuals tests in each panel are listed as Results, the fruit, you cannot directly order these individual tests
An incomplete GCAC issue has been created and linked. Someone will need to complete it later.
An internal server error occurred
An Issue concerns matters relating to the patient's health
An issue is a medical problem, allergy, medication, surgery or dental issue
An onset/hospitalization date may be specified for each visit.
An order has now been successfully created, however a place to receive and document the returned result does not exist as yet and needs to be created
An Outcome for the problem - Resolved, Improved, Status Quo, Worse, Pending Followup or leave as Unassigned
An undefined error occurred, please contact your systems administrator.
An unexpected error has occurred.
An unknown system error occurred during the export for resource
An Updated Appointment
An uppercase letter
Analyzed
and
And
AND
and
and all subordinate data? This action will be logged
and modifier
and processed.
and resetting claim status.
and restart Apache server.
and the Reason is
android
Anemia
Ankle
Ankle + heel
Ankle Evaluation Form
Ankle Problems
Ankylosing Sondlilitis
Ankylosing Spondlilitis
Anorexia
Another thing you can do in the posting window is request secondary billing. If you select this checkbox before saving, then the original claim will be re-opened and queued on the Billing page, and will be processed during the next billing run.
Another way to select an ICD code to justify the CPT4 code is to click on the label CPT4 at the beginning of the row
Answering Service
Ant
ante
Anterior Chamber Depth
Anterior Segment
Anterior Segment Default Values
ant{{anterior}}
Anus nl, no rectal tenderness/mass
Anxiety
any
Any
Any additional information pertaining to this provider
Any carotid bruits appreciated?
Any Category
Any changes here will be reviewed by provider staff before commiting to chart. The following apply
Any changes here will be reviewed by provider staff before committing to your chart. The following apply
Any changes that you need to make to this particular line item should be made here and saved
any date
Any Demographic Search
Any part of the desired code or its description
Any part of the desired NPI
Any part of the desired specialty
Any part of the drug id or drug name
Any part of the immunization id or immunization name
Any part of the patient name, or \"last,first\", or \"X-Y\"
Anyother Relevant Information
Anything else occur at the same time?
Any{{Gender}}
AOE Q&A
APD{{afferent pupillary defect}}
API
API key for SMS Gateway.
API Log Option
API Log Option (Full includes requests and responses).
API logging
Apnea
App
App Launch URI
App Logout URI
App Name
App Redirect URI
App Registration Form
Appearance
Appearance:
Append
Append this message
Append this note
Append to the existing message
Append to the existing note
Append to this note
Append to This Note
Appendectomy
appendectomy
Applicable only for family planning clinics
Applicable Patients
Application
Application name for login page and main window title.
Application name used throughout the user interface.
Application Receiver Code (GS03 - If blank ISA08 will be used)
Application Sender Code (GS02)
Application Title
Applies to the Vitals form and Growth Chart
Applies to this visit only
Applies to Vitals form
Apply the changes to the Current event only, to this and all Future occurrences, or to All occurrences?
apply to affected area
apply to skin
Applying
Applying Patch to site
Appointment
Appointment Category
Appointment Date
Appointment Display Sets - Color 1
Appointment Display Sets - Color 2
Appointment Display Sets - Color 3
Appointment Display Sets - Color 4
Appointment Display Sets - Ignore Display Limit (Last Set)
Appointment Display Style
Appointment made by
Appointment Reminder Rule
Appointment Reminders
Appointment status
Appointment Statuses
Appointment within
Appointment/Event Color
Appointments
Appointments (write optional)
Appointments (write,wsome optional)
Appointments (write,wsome optional) (appt)
Appointments - Group Summary - Number to Display
Appointments - Onsite Patient Portal - Number to Display
Appointments - Patient Summary - Number to Display
Appointments - shows all future appointments as well as Recalls
Appointments and Encounters
Appointments for
Appointments Report
Appointments-Encounters Report
Appropriate Results
Appropriate Testing for Children with Pharyngitis (CQM)
Approve
Approve Order
Approve the patient from Patient/Client->Import->Pending Approval
Approved
Approved Events Administration
Approved Successfully
Apps
Appt Date
Appt Status
Appt Time
Appt-Enc
Appt. Reminders
Appts
Appt{{Abbreviation for appointment}}
App{{Applanation abbreviation}}
Apr
April
AP{{applanation}}
Arabic
Aragonese
Archive
Archive Log Files
Archive old files
Are access control group names to be translated?
Are appointment category names to be translated?
Are document category names to be translated?
Are fees charged for this type?
are off
are on
Are patient note titles to be translated?
Are the codes stored in external sql tables (0-No, 1-ICD10, 2-SNOMED(RF1), 3-SNOMED(RF2)) ?
are unanswered
Are you prepared to complete a new GCAC issue for this visit?
Are you sure to clear chat history?
Are you sure to post for today?
Are you sure you want to approve these events?
Are you sure you want to cancel your changes?
Are you sure you want to clear chats session history?
Are you sure you want to completely remove this form?
Are you sure you want to continue?
Are you sure you want to delete
Are you sure you want to delete this disclosure?
Are you sure you want to delete this event?
Are you sure you want to delete this item from the database?
Are you sure you want to delete this message?
Are You Sure you want to delete this name?
Are you sure you want to delete this note?
Are you sure you want to delete this plan?
Are you sure you want to edit these events?
Are you sure you want to hide these events?
Are you sure you want to remove namespace
Are you sure you want to transmit it again?
Are you sure you want to view these events?
Are you sure you wish to delete the entire group named
Are you sure you wish to delete the entire list
Are you sure you wish to delete the field in
Are you sure you wish to delete the selected fields?
Are you sure you wish to delete this entire group?
Are you sure you'd like to quit without saving your answers?
Are you sure you\'d like to continue with these actions?
Are you sure?
Area not specified
Arm
Armenian
ARNear{{Auto-refraction near acuity}}
ARNear{{autorefraction near}}
Arrival
Arrive Time
Arrived
Arrived late
Arrythmia
Arthritis
Arthritis / degen joint diseas
Arthritis / degen joint disease
Article
AR{{Autorefraction Acuity}}
AR{{autorefraction}}
as
As appears on documents
as billed
As Button
As Large Text Link
As Of
As Text Link
As the first step choose Group or Custom Favorite Group, as the case may be, as the Top Level Tier 1 and fill in the required details
As the secret key need by the authenticator is stored on the mobile phone malware can steal these keys and thus compromise authentication
As this is an infrequently performed process additional help in provided by clicking on the help icon that is revealed when you hover over the label for each box
As we are creating a Custom Group for manual entry of returned results we need to create a place to enter these results
As will appear on documents.
ASC
Asian
Asked but no answer
Assamese
Assess Penicillin Allergy
Assessment
Assign
Assign it to this one?
Assign Severity and Save
Assign the dosage values etc. and click Save
Assign the message to the correct patient by clicking Patient: Click to select, assign a Type and forward the message on to the correct clinician or staff member
Assigned Groups
Assigned Templates
Assigned To
Assistant
Assisted Living Facility
Associate
Associated
Associated Notes.
Assume patients permit Messaging
Assume patients receive HIPAA policy
Asthma
at
At least one diagnosis is required! Please add a diagnosis for this order.
At least one search parameter is required if you select All.
At present e-prescribing from openEMR is possible only in the United States
At present only Continuity of Care Record (CCR) Continuity of Care Document (CCD) can be sent using phiMail
At the Navicular
At the Navicular:
Athletic team
Athletic Team
Athletic/Injury
ATNA audit CA certificate
ATNA audit host
ATNA audit local certificate
ATNA audit port
Atropine 1%
Attending physician
Attention
Attention: Pending Documents
Attn
Attributes
Aud URI (use this in the "aud" claim of your JWT)
Audiological physician
Audit all Emergency User Queries
Audit CDR Engine Queries
Audit Changes
Audit Log Tamper
Audit Log Tamper Report
Audit log tampering evident at entry number
Audit Log Validated Successfully
Audit Log Validation Failed
Audit Logging Backups
Audit Logging Miscellaneous
Audit Logging Order
Audit Logging Patient Record
Audit Logging Scheduling
Audit Logging Security Administration
Audit Logging SELECT Query
Audit Payment
Audits
Aug
August
Aunt
Auth
Auth/notes
Authenticate TOTP
Authenticate U2F
Authenticated API Users
Authenticating
Authenticating the user thus becomes an important factor in this endeavor
Authentication Argon Hash Memory Cost
Authentication argon hash memory cost. Suggest PHP Default unless you know what you are doing.
Authentication Argon Hash Thread Number
Authentication argon hash thread number. Suggest PHP Default unless you know what you are doing.
Authentication Argon Hash Time Cost
Authentication argon hash time cost. Suggest PHP Default unless you know what you are doing.
Authentication Bcrypt Hash Cost
Authentication bcrypt hash cost. Suggest PHP Default unless you know what you are doing.
Authentication Error
Authentication SHA512 Hash Rounds Number
Authentication SHA512 hash rounds number.
Authenticator
Authenticator apps are available for both ios and android devices at their respective app stores and is free to use
Author
Authorization
Authorization group
Authorization Status
Authorizations
Authorize
Authorize - any encounters
Authorize - any encounters (auth_a)
Authorize - my encounters
Authorize - my encounters (auth)