Hello! We have around 1200 female patients who were accidentally assigned the Obs Term of Prostate Exam when the physicians were clicking on All Normal on the Physical Exams. We found this out through an audit. Is there any way to retro fix this? I heard there is a SQL script fix to resolve this on the DB side but will not reflect on the actual Progress Notes. Is there a Batch Append on he front end of CPS that can be run to fix this all at once? Any help or input will be appreciated. Thanks!
Hi Sharan,
Can you tell me what obsterm you are using?
Would be something like this:
DELETE FROM OBS
WHERE PID IN (SELECT PID FROM PatientProfile WHERE SEX = 'F') AND HDID IN (SELECT HDID FROM OBSHEAD WHERE NAME = 'OBS TERM NAME')
You would have to replace the OBS TERM NAME with the OBS Term that you want removed. Please make sure you make a backup before running this script.
PROSTATEEXAM is the Obs Term. But would this script actually remove it from the front end as well?From the actual Progress note?
DELETE FROM OBS
WHERE PID IN (SELECT PID FROM PatientProfile WHERE SEX = 'F') AND HDID IN (SELECT HDID FROM OBSHEAD WHERE NAME = 'PROSTATEEXAM')
Are the progress notes signed off? If not, they will have to open each one and then put it on hold if it is in the text translation. Or I can provide you with another script to remove them if it is signed off, but need to know what it exactly says?
All of these notes are signed off.
That is not a problem, can you provide me with the little piece of text translation that needs to be removed?
Can you run this script and let me know if the number it gives you is greater than 0.
SELECT COUNT(*)
FROM DOCDATA
WHERE SDID IN (SELECT SDID FROM DOCUMENT WHERE PID IN (SELECT PID FROM PatientProfile WHERE SEX = 'F')) AND
DATA LIKE '%Prostate:%' AND DATA LIKE '%normal size prostate without nodules or asummertry.%'
Two notes:
1) A record of the removal must exist in the database. This is required by law. Direct deletes without notice of correction is a violation of that law. Examine how 'filed in error' handles obsterms for more information (Hint: Instead of deleting the obsterm, the CHANGE field is changed from '1' or '2' to '10'. This preserves the 'error' and keeps the site in the right side of a forensic investigation.
2) While you could 'mass' change the obsterm change status, the chart note itself is a bit more difficult. A custom program would be required to grab the document ID of each encounter and create an 'append' document with a 'legally proper' statement indicating what the error was and the action taken to correct it. Again, this is required by law.
Side note: In the paper chart days, errors were retained in the note and annotated by drawing a single line through the error with the authors initials beside it. The EMR mimics this via the file in error routine. But, don't take my word for it - learn it here:
http://www.medscape.com/viewarticle/804731_2
or here:
PS: This is prime example as to why CMS is very opposed to 'macro' documentation.
As Lee pointed out, I would advice against deleting the OBS terms. Instead set OBS.CHANGE=10
Changing it in the progress note is difficult and as Lee pointed out, could cause legal issues. That being said, it is possible.
Something like:
update docdata set data = replace(data,"","") where sdid in (
)
You would have to find the exact text from the docdata.data column including all of the RTF encoding that you would want to replace.
I hear ya, and in my mind I hear my Pa saying: 'Just 'cause it can be done doesn't mean it is a good idea.' 🙂
I would strongly advise against any alteration of the record that is not native to the EMR's functionality. There are unforeseen consequences if it is ever detected (and don't even think it, no one is that good).
While state laws vary, if an organization receives federal money, federal law is the rule of the day. Federal law has very specific guidelines regarding medical documentation. In short, modification is grounds for, at minimum, doubt in a malpractice suit or claim dispute, enough doubt that it is nearly impossible to defend and win; at most, it is a conspiracy to conceal/alter evidence with real penalties and fines associated with it.
I urge every Medical IT job description to become well versed in the medical-legal statutes, at both the Federal and State level. The medical field demands that all who contribute to it understand and abide by certain rules otherwise the risk of patient harm, loss of revenue, and/or loss of reputation will be the outcome.
This ain't Google or Facebook, it is human life and missteps have real life consequences.
The following excerpt is something to ponder if you have taken a different approach and it is actually on topic for the original post:
http://www.medscape.com/viewarticle/809517
Question:
I work in an operating room, where we have EMRs. We check each other's charts for mistakes, sometimes days later. We are told to make corrections if we find mistakes. Is this legal?Response from Carolyn Buppert, MSN, JD
Healthcare attorney, Boulder, ColoradoIt's good that you are doing internal audits -- staff learn by analyzing what they are doing right and identifying what they need to improve. It is legal to correct mistakes and make late entries, if it is done appropriately. If not done correctly, it could be illegal and, at minimum, more detrimental than helpful.
With your correction, you need to make it clear that the entry is a late entry and that you are correcting a mistake. You should not try to eradicate the erroneous previous entry. You should not try to make the new entry appear to be the original entry. First, know that there may be state laws that apply to this situation. Hospitals should have policies on how to correct errors in the medical record. Your hospital's legal counsel should be in on the discussion about the policy, should review the state law, and should review the policy.
In general, the appropriate way to correct an error is the same as with paper records -- that is, make a new entry with today's date and time, stating that you are correcting an error in a previous entry; give the date and time of the previous entry; and enter the corrected data or explanation. Without knowing the details of your electronic record, I can't say exactly how to accomplish this, but what you want is for the original entry to be visible, with a notation that alerts a reader that this part of the record has been corrected and directing the reader to the corrected information. The original author of the report should be the individual making the correction. If someone else is making the correction, the new author should explain why he or she is making the correction.
The reason for keeping the original entry is that if there is a challenge to the care or the documentation (for example, a lawsuit filed or a claim for reimbursement rejected), the hospital and clinicians need to avoid any indication that the records have been altered in anticipation of litigation or payer audit. Alteration of records (sometimes called "spoliation of the evidence" in a legal proceeding) is detrimental to the defense of a malpractice action or a claim for payment. The opposing party is entitled to an assumption that the altering party had a "consciousness of guilt." Defense attorneys say it is nearly impossible to defend a hospital in a malpractice case when the record has been altered.
A Website for nurse legal consultants tells attorneys to be alert to signs of tampering with medical records. "Tampering with the record involves any of the following: adding to the existing record at a later date without indicating [that] the addition is a late entry, placing inaccurate information into the record, omitting significant facts, dating a record to make it appear as if it were written at an earlier time, rewriting or altering the record, destroying records, or adding to someone else's notes."[1] If records are altered in anticipation of a payer audit, then the payer, when discovering the alteration, presumes the hospital or clinician has billed fraudulently.
The bottom line is that internal audits are good. When mistakes are identified, focus on educating the clinician about his or her error and how to document better in the future. In general, correcting errors found during internal audits should be done rarely and carefully, without intent to deceive.