description
Lists active orders for the current patient entered during the current chart update. You can format them into a list with one order per line or separate them with commas.
Active orders do not include those with a status of Complete. That means that some orders created and signed during the update, such as injections given or durable medical equipment dispensed at the time of the encounter, are not displayed.
type
Data symbol function
syntax
ORDERS_NEW(listtype,order type)
arguments
order_type |
Optional. The order type:
S = Service orders
T = Test orders
R = Referral orders
not specified = All orders
|
Listtype |
Defines the way you would like the information represented:
Comma - returns a comma-delimited list of order descriptions and codes
List - returns a list of order descriptions and codes
Delimited - returns a delimited list of all order information, with pipes(|) between order records and carets (^) between fields. Information returned in the following table.
|
Field # |
Field Description |
Sample |
1 |
Order Description |
Antigen Therapy Services |
2 |
Order Type |
R |
3 |
Order Code |
CPT-95165 |
4 |
Order Start Date |
08/22/2003 |
5 |
Order End Date |
09/22/2003 |
6 |
Diagnosis Description |
CORONARY ARTERY DISEASE |
7 |
Diagnosis Code |
ICD-414.00 |
8 |
Order Comments |
Please call once started |
9 |
Duration |
3 |
10 |
Duration Units |
W |
11 |
Number of Visits |
3 |
12 |
Priority |
U |
13 |
Service Provider |
Michael Latta, MD |
14 |
Service Provider Specialty |
Allergy\Immunology |
15 |
Service Provider Organization |
AAA Allergy Clinic |
16 |
Service Provider Address |
19540 SW Hassalo Dr. Tigard, OR |
17 |
Service Provider Phone |
503–684–4473 |
18 |
Authorization Number |
E1235 |
19 |
Administrative Comments |
Call prior to first appointment to secure authorization
|
20 |
Order Status |
S |
21 |
Authorizing Provider |
Harry Winston, MD |
22 |
Signed/Unsigned |
UNSIGNED |
23 |
Modifier Code |
21 |
24 |
Modifier Description |
Prolonged Evaluation and Management Services
|
25 |
Order Number |
1234-987 |
when to evaluate
When inserted in the chart note or continuously
returns
List of all new order description and codes for a patient from the current update.
comment
list is the default argument for the list_type parameter, and all orders are included.
example 1
{ORDERS_NEW(‘list’)}
Returns a list of all active orders with codes.
Ofc Vst, Est Level IV [CPT-99214]
CBC w/o Differential [CPT-85024]
Metabolic Panel, Basic [CPT-80049]
Ofc Vst, Est Level I [CPT-99211]
example 2
{ORDERS_NEW(‘delimited’)}
Wart Removal (up to 15)^S^CPT-17110^09/29/2003^^WARTS, BOTH HANDS^ICD-078.19^Removed 22 warts^^^2^^^^^^^^Preauthorization received for unusual anesthesia^U^Harry Winston MD^UNSIGNED^23^Unusual Anesthesia|Acne surgery^R^CPT-10040^09/29/2003^01/05/2004^^^^14^W^12^^Haugen MD, Dennis^^Pacific Falls Clinic^^^^^U^Harry Winston MD^UNSIGNED^^
where used
Chart: Text Components, Quick Text
Encounter Form Editor: Data Displays, MEL Expressions, Visibility controlling items
|