Can anyone tell me what the name of the report that creates the output when you have selected a document inside Centricity, then select "print" then under print topics select "documents" and then "selected documents" under print items? I am assuming it is a Crystal report.
It's not a Crystal Report or editable from what I remember.
Other things like Clinical Summary call an RTF file with some customization allowed.
There is one setting (at least in EMR) related to printing chart documents. You can change the header in Go, Setup, Settings, Chart Documents, Header.
We put a printed by and a timestamp to help with chart documents printing where they should not and find out who is responsible.
{LOC.NAME} Printed by: {USER.FULLNAME} on {DATETIMESTAMP()} {LOC.ADDRESS1} {LOC.ADDRESS2} {LOC.CITY}, {LOC.STATE} {LOC.ZIP} Page 1 {LOC.PRIMPHONE} Fax: {LOC.FAXPHONE} {PRINT_TITLE} {Patient.labelName} {cfmt(patient.altphone, "", "Home: ", "")}{cfmt(patient.workphone, "", " Work: ","")} {Patient.Sex} DOB: {PATIENT.DATEOFBIRTH} {cfmt(INS_PLAN(),"","Ins: ", "")}{cfmt(INS_GRP(), "", " Grp: ","")}
I was hoping that I could put, for labs, the external provider information on the header. Do you think that is possible? If not thru obsterms thru mldefs?
I have my doubts about being able to do it with an obs term but you could try. The issue would be you would have to use the last signed obs term and it might not always be correct if you were not printing the most recent lab. If you have an interface engine (like Qvera) and get your labs back electronically, you could append the external provider to the field in the HL7 that becomes the document summary. Then it would show up, provided that the append didn't make the field too long.
We use Cloverleaf. That sounds like it would work. What are the steps to do that?
You will need to talk to whoever does your interface, but basically LinkLogic takes the OBR line (if you get more than one lab back in a single HL7 file it concatenates them) and turns that into the document summary. You will determine what lab name is associated with the MSH-2 field and append whatever text you want to the end of OBR-4 (or the last OBR-4 if more than one exist in the file). Then let LinkLogic process it.
Awesome idea. Thank you very much.