Document became "signed" or showed a status of signed, watermark said preliminary and document had the colors to make it look like it was on hold. When looking at the actual document it did not say signed at the bottom of the document either. This happend 3 times for one provider over a couple of weeks that we caught. There is no way for GE to track if there are others. They felt these were corrupted documents. They were replaced and recreated.
This happened for one of our providers yesterday. I ran an SQL script to set the status back on hold so the doctor could get back in and sign it appropriately.
UPDATE DOCUMENT
SET STATUS = 'H'
WHERE PID = [PID of patient] and VISDOCID = [VISDOCID of the document];
He was able to get back in and sign after this.
Good to know. Better than copy paste and filing the other in error. Thanks for the advice.