I could really use some help guys and gals. We are using Automated Clinical messaging to send out the Clinical Visit Summary. We have a Meaninging Ful Use Check list form that has a visibility region in it to prompt the doctors to print the summary if the patient does not have an email or IF the patient has an email the text will read EMAIL RECORDED, CLINICAL VISIT SUMMARY WILL AUTO SEND WHEN NOTE IS SIGNED.
The current translation is this : PATIENT.EMAIL<>"" AND (USER.REALNAME=="")
I am trying to add to the translation to also to only send the CVS if their current Preferred method of Contact is Secure Messaging.
We have this set up in the Banner and on a flow sheet and the OBS term is secmsg
I had tried several ways including the following :
(obsany("METHCONTACT")=="secmsg" AND PATIENT.EMAIL<>"") AND (USER.REALNAME=="")
( PATIENT.EMAIL<>"")AND (obsany("METHCONTACT")=="secmsg" AND (USER.REALNAME=="")
(PATIENT.EMAIL<>"") AND(PATIENT.REGNOTE}Contact By:(obsany("METHCONTACT")=="secmsg" AND (USER.REALNAME=="USER.REALNAME=="")
(PATIENT.EMAIL<>"") AND(PATIENT.REGNOTE}Contact By:=="Messaging" AND (USER.REALNAME=="")
{If (PATIENT.EMAIL<>"") AND(PATIENT.REGNOTE}Contact By:=="Messaging" AND (USER.REALNAME=="else”” ENDIF}
It still will send the CVS even when the patients preffered method of contact is not messaging.
Any insight on this would be great!!
Thanks
Heather R. McCormack
Centricity Application Analyst I
Pardee Hospital
make sure your statements are correct...
{IF condition and condition THEN
something
ELSE
something
ENDIF}
your statements above have missing/misplaced curly braces and missing THENs.