All messages should be posted in plain text.  HTML will be converted to
attachments.    The meditech-l web site is MTUsers.com
======================================

Michelle:

What routine are the Pharmacist's using to verify the orders (or not
verify them) is it Process Orders or the routines on the Verify Menu:

10. Verify/Edit/Cancel Orders
11. Verify/Edit/Cancel Orders by B
12. Process Unverified Orders

I can see a couple of ways to try and flag the pharmacist about these
orders.

Either the user who entered them (the intern) by using:

rx enter user="INTERN"

"DON'T FORGET TO VERIFY THIS ORDER"^X,
IF{[f rx enter user]>"INTERN" [f rx win init]},
{[f rx win add](X)},
{[f rx win disp]};

and flag the pharmacist at FILE,DOSE,MED or whenever you want to flag
them to verify this user's orders.

And by using the rx's status (I assume it is unverified, not sure since
we do not use anyone but Pharmacists to enter orders). Whatever the
status is for the rx, you can flag it by using rx status="WHATEVER"

"DON'T FORGET TO VERIFY THIS ORDER"^X,
IF{[f rx status]>"unverified" [f rx win init]},
{[f rx win add](X)},
{[f rx win disp]};


For the sig (directions of BID) you can use rx sig to flag the
pharmacist to edit that sig's schedule.

Here is one for not allowing sig of QD to be filed.

Mnemonic         QD                                   Print On Order
History
Active?          Y                                    Print From PCI
N
Description      PREVENT QD OR QOD SIG                POM Enabled?
N
Data Flds from   RX                                   Evaluate at
FILE
Eval Stock Meds  Y


 "Cannot use sig of QD, please edit."^X,
 "Cannot use sig of QOD, please edit."^Y,
 IF{[f rx sig]="QD" [f rx err msg](X);
 [f rx sig]="QOD" [f rx err msg](Y);
 [f rx ok]};




Good Luck,

Bill Mullins RN
Williamson Medical Center
2021 Carothers Road
Franklin,Tn  37067
615-435-5630

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Pivonka, Michelle
Sent: Wednesday, July 12, 2006 4:46 PM
To: [email protected]
Subject: [MEDITECH-L] M 5.5 SR1 PHA "rule"? questions

All messages should be posted in plain text.  HTML will be converted to
attachments.    The meditech-l web site is MTUsers.com
======================================


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. 

This footnote also confirms that this email message has been swept by Sophos 
and MIMEsweeper for the presence of computer viruses.
**********************************************************************


_______________________________________________
meditech-l mailing list
[email protected]
http://mtusers.com/mailman/listinfo/meditech-l

Reply via email to