Are there any other facilities out there, live with CPOE, that utilize
the transfer routine in the ED? When a patient is admitted, the ED
physician enters admission orders via the Transfer routine.
Our problem is with the OE parameter 'Create new orders upon
transfer'.......We don't want new orders created on the nursing units,
but we do need new orders created from ED transfers.
Is anyone else dealing with these same issues?
Misty Sanders, RN
IS Clinical Analyst
Russell Medical Center
===###===###===###===###===###===###===
Please do NOT send messages that ask "Please post to the list" or "I'd like to see your answers" or "Send that info to me, too" These are useless messages that just waste the email server's resources. Instead, email the original requester and ask that they send you or post the results of their question.
To UNSUBSCRIBE or to SUBSCRIBE, go to http://MTUsers.net for information.
You can locate the:
1) meditech-l archives
2) NPR/Magic/CS tips
3) job opportunities in the Meditech community
http://mtusers.net
Do NOT send email to meditech...@MTUsers.com. This is a system email box that is NOT monitored by a human. If you need help or advice on how to use the meditech-l, email lo...@MTUsers.com or ju...@MTUsers.net. Both of these people help manage the meditech-l, so they are your best resource.
===***===***===***===***===***===***===
I don't know if this is helpful or not. We do not use the transfer process out of ED at this time, but we do use it in house a lot. What works best for us is setting the Copy and Edit Transfer Meds to N in the CDP of OE. This will discontinue all orders that are not checked and continue the orders that are checked.
Shelly Hardman, RN, BSN
Newton Medical Center
Ext: 3931
Good Morning L-
Misty Sanders, RN
IS Clinical Analyst
Russell Medical Center
===###===###===###===###===###===###===
===***===***===***===***===***===***===
The information in this e-mail and any attachments is confidential and
intended solely for the attention and use of the named addressee(s).
It must not be disclosed to any person without proper authority.
If you are not the intended recipient, or a person responsible for
delivering it to the intended recipient, you are not authorized to and
must not disclose, copy, distribute, or retain this message or any part of it.
Lesley Bailey RN,BC MBA
Manager of Clinical Analysts
Northeast Health Systems
85 Herrick Street
Beverly, Ma 01915
Phone: 978-922-3000 ext. 2605
email: lba...@nhs-healthlink.org
>>> Shelly Hardman <shelly....@newmedctr.org> 11/29/2011 11:49 AM >>>
Misty,
Good Morning L-
Misty Sanders, RN
IS Clinical Analyst
Russell Medical Center
===###===###===###===###===###===###===
===***===***===***===***===***===***===
===###===###===###===###===###===###===
===***===***===***===***===***===***===
This message and its contents are confidential and are intended for the use of the addressee only, and may contain information that is privileged, confidential and exempt from disclosure under applicable law. If you are not the intended recipient, this serves as notice that any unauthorized distribution, duplication, printing, or any other use is strictly prohibited. If you feel you have received this email in error, please delete the message and notify the sender so that we may prevent future occurrences.
We are looking for a little help with an attribute that will be attached to a PRV.PROC cds! We want the attribute to look at the patient's primary insurance and return a warning message if the procedure code is not covered by that insurance.
The problem is that there are too many different insurance mnemonics that need to be evaluated. The attribute would be too long! So, we thought we would try a macro; well... the macro is only evaluating the error message and not evaluating the condition (which is the insurance)! Below is the Macro that we have been toying with! Any help would be appreciated at this point!
;this macro compares the patients insurance for the free vaccines
;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IF{(/[ANS%0,"NYV-FC01"]|0'="CDPHPCD",
/[ANS%0,"NYV-FC01"]|0'="CDPHPCPS",
/[ANS%0,"NYV-FC01"]|0'="EMPCHP",
/[ANS%0,"NYV-FC01"]|0'="FIDT",
/[ANS%0,"NYV-FC01"]|0'="FID",
/[ANS%0,"NYV-FC01"]|0'="GHICHP",
/[ANS%0,"NYV-FC01"]|0'="GHIMCD",
/[ANS%0,"NYV-FC01"]|0'="MCD",
/[ANS%0,"NYV-FC01"]|0'="MCDOTHER",
/[ANS%0,"NYV-FC01"]|0'="MCDPEND",
/[ANS%0,"NYV-FC01"]|0'="SPARC/CHP",
/[ANS%0,"NYV-FC01"]|0'="SPUNINSURE",
/[ANS%0,"NYV-FC01"]|0'="UBHCDPHPCD",
/[ANS%0,"NYV-FC01"]|0'="WCARE",
/[ANS%0,"NYV-FC01"]|0'="SP",
/[ANS%0,"NYV-FC01"]|0'="CC")},
@Window.centered(11,60,8)^#,
"Warning":60C^#,
N(D(4,0))^#,
N("The insurance that this patient is registered with")^#,
N("is not eligible to receive the Free Vaccines")^#,
N("Please use the vaccine codes.")^#,
N("Press <Enter> to Continue.")^#,
#0,
We have tried using ADM.PAT as well with the Macro, but that didn't work either!!
Thanks, Tristan
Tristan Curtis, RN
Clinical Analyst
Seton Health, St. Mary's Hospital
Confidentiality Notice:
This e-mail, including any attachments is the
property of Seton Health and is intended
for the sole use of the intended recipient(s).
It may contain information that is privileged and
confidential. Any unauthorized review, use,
disclosure, or distribution is prohibited. If you are
not the intended recipient, please delete this message, and
reply to the sender regarding the error in a separate email.
Syntax of IF:
IF{CONDITION<space>STATEMENT}
You have, effectively:
IF{EXPRESSION,EXPRESSION,EXPRESSION,EXPRESSION} So it does nothing to control whether the message prints.
One way to write it would be to compare the query value to all the good values and if it is not equal to any of them, display the message, note that this IF statement needs to be all on one line:
IF{[ANS,"NYV-FC01"]|0'="CDPHPCD"'="CDPHPCPS"'="EMPCHP"'="FIDT"'="FID"'="GHICHP"'="GHIMCD"'="MCD"
'="MCDOTHER"'="MCDPEND"'="SPARC/CHP"'="SPUNINSURE"'="UBHCDPHPCD"'="WCARE"'="SP"'="CC" @ALERT.MESSAGE},
EXIT;
ALERT.MESSAGE
@Window.centered(11,60,8)^#,
"Warning":60C^#,
N(D(4,0))^#,
N("The insurance that this patient is registered with")^#,
N("is not eligible to receive the Free Vaccines")^#,
N("Please use the vaccine codes.")^#,
N("Press <Enter> to Continue.")^#,
#0
The other approach is to load the list of insurances into slash and then compare in an IF statement:
1^/INS["CDPHPCD"],
1^/INS["EMPCHP"],
..etc..
IF{/INS[[ANS,"NYV-FC01"]|0] @ALERT.MESSAGE},
EXIT;
PS, it is not necessary to refer to queries with /[ANS%0,QUERY]|0. You only need to extract the / and put it outside the [ if you are assigning to the query.
So this is fine syntax: IF{[ANS,"PROXY"]|0="Y" @W.return("Patient has Proxy")}
If you are trying to write to the temp value of the query, then you need to use the % operator to keep the syntax checker from preventing filing:
IF{[ANS,"PROXY"]|0="Y" "PROXY"^/[ANS%0,"PROXYSTA"]|0}
Joe Cocuzzo
Vice President
NPR Services
Iatric Systems, Inc.
Phone/Fax: (978) 805-4115
Email: mailto:Joe.C...@iatric.com
Web: http://www.iatric.com/
Iatric Systems is a leading provider of integrated software applications, interfaces and reporting solutions for hospitals and healthcare systems.
__________
-----Original Message-----
From: meditech-...@mtusers.com [mailto:meditech-...@mtusers.com] On Behalf Of Curtis, Tristan
Sent: Friday, December 02, 2011 9:27 AM
To: medit...@mtusers.com