Disabled Recall

For users or potential users.
Post Reply
User avatar
savvy
Posts: 438
Joined: Wed Sep 12, 2007 9:25 pm
Location: Berkeley, California

Disabled Recall

Post by savvy » Thu Apr 01, 2010 10:40 pm

Somehow, patient recall is being disabled.
This has happened before.
It effects multiple, unrelated, patients.
What causes this?
Can someone post a query that will list All Patients With Disabled Recall (Prophy)?
Candy is dandy, but sex won't rot your teeth.

Cheers!!!
Go Bears!!!!!
Savvy

User avatar
jordansparks
Site Admin
Posts: 5739
Joined: Sun Jun 17, 2007 3:59 pm
Location: Salem, Oregon
Contact:

Re: Disabled Recall

Post by jordansparks » Sat Apr 03, 2010 2:17 pm

Also sounds like something that should be added to permissions and audit trail. "Somehow" isn't good enough.
Jordan Sparks, DMD
http://www.opendental.com

User avatar
savvy
Posts: 438
Joined: Wed Sep 12, 2007 9:25 pm
Location: Berkeley, California

Re: Disabled Recall

Post by savvy » Sat Apr 03, 2010 2:40 pm

I was hoping you would know the "somehow."
Basically, about 30 patients, that I know of, that were seen for prophy and exam 6-8 months ago did not appear on the recall list, nor were they scheduled in the future.
All were "Disabled".
It was only brought to our attention when a few of them called asking when their next appt was/should be, since they had not yet been notified.
To my knowledge, the only way to disable recall is to manually go into a patient's recall section and place a check in the disabled box. I can absolutely guarantee that was not done for the 30 or so patients known to be affected.

So,.......
What else might cause this?
Candy is dandy, but sex won't rot your teeth.

Cheers!!!
Go Bears!!!!!
Savvy

User avatar
jordansparks
Site Admin
Posts: 5739
Joined: Sun Jun 17, 2007 3:59 pm
Location: Salem, Oregon
Contact:

Re: Disabled Recall

Post by jordansparks » Sat Apr 03, 2010 4:53 pm

As far as I know that is the only way. I have spent a few hours reviewing the code and can't see any other way it could happen. There is a chance that it was an old bug that is no longer present. I think there's a query shows you which patients are disabled. Using that list, it should be easy enough to un-disable them.
Jordan Sparks, DMD
http://www.opendental.com

snoozedentist
Posts: 2
Joined: Mon Jun 06, 2011 11:51 am

Re: Disabled Recall

Post by snoozedentist » Wed Feb 27, 2013 4:12 pm

We are having a similar problem. We have been coming across several patients whos recall has been disabled without any reason we can come up with. Is there a way to run a report that shows patient's with disabled recall so we can correct it?

Jay
Posts: 272
Joined: Fri Aug 06, 2010 10:01 am

Re: Disabled Recall

Post by Jay » Wed Feb 27, 2013 4:41 pm

Here's one possibility. Check SETUP>>RECALL and the bottom right of the Window there should be an item:
Max # Reminders (e.g. 4):
Check the entry. If it is not blank then after the maximum number of reminders sent to a patient, Recall gets disabled. This max is quickly attained if you have a software like Lighthouse 360 doing your reminders.
Best to blank it out.
This happened to us.
Check the last item on: http://opendental.com/manual/recallsetup.html

snoozedentist
Posts: 2
Joined: Mon Jun 06, 2011 11:51 am

Re: Disabled Recall

Post by snoozedentist » Thu Feb 28, 2013 12:44 pm

Well, I wish it would have been that easy. We already have it blanked out.

Jay
Posts: 272
Joined: Fri Aug 06, 2010 10:01 am

Re: Disabled Recall

Post by Jay » Thu Feb 28, 2013 1:47 pm

Oh well, I tried. Maybe now I'll find that we are having the same problem and haven't even realized it.

bpcomp
Posts: 304
Joined: Mon Feb 27, 2012 7:30 am
Location: Tucson, AZ
Contact:

Re: Disabled Recall

Post by bpcomp » Thu Feb 28, 2013 6:52 pm

I'm unable to test the query at the moment but you can try it. If it doesn't work then I'll have to debug it later.

SELECT patient.FName, patient.LName, recall.IsDisabled, recall.Note
FROM patient, recall

INNER JOIN patient.PatNum ON recall.PatNum

WHERE recall.IsDisabled = TRUE

User avatar
savvy
Posts: 438
Joined: Wed Sep 12, 2007 9:25 pm
Location: Berkeley, California

Re: Disabled Recall

Post by savvy » Fri Mar 01, 2013 10:13 am

Query no workie
Candy is dandy, but sex won't rot your teeth.

Cheers!!!
Go Bears!!!!!
Savvy

Tom Zaccaria
Posts: 353
Joined: Mon Feb 25, 2008 3:09 am

Re: Disabled Recall

Post by Tom Zaccaria » Fri Mar 01, 2013 11:49 am

Try this:

select PatNum, IsDisabled from recall
WHERE IsDisabled ='1'

Assuming 1 = true

drtmz

mowgli
Posts: 134
Joined: Fri Sep 14, 2007 1:42 pm

Re: Disabled Recall

Post by mowgli » Fri Mar 01, 2013 12:12 pm

Well, if I set a patient "inactive" it automatically disables their recall. When I set the patient "active" again, the disabled recall has to be re-enabled manually, and there's nothing in the audit trail. Version 13.1.8.

User avatar
jordansparks
Site Admin
Posts: 5739
Joined: Sun Jun 17, 2007 3:59 pm
Location: Salem, Oregon
Contact:

Re: Disabled Recall

Post by jordansparks » Sun Mar 03, 2013 10:28 am

I think that may be the answer. Savvy, are you regularly setting patients inactive as part of your office processes? If so, that would explain why it's a problem for you, and not anyone else.

Here's a query to identify patients with the problem:
SELECT patient.PatNum AS PtNum, LName, FName
FROM recall,patient
WHERE recall.PatNum=patient.PatNum
AND recall.IsDisabled =1
AND patient.PatStatus=0

I have added it to our bug list and we will look into changing these back to enabled as patients are set active.
Jordan Sparks, DMD
http://www.opendental.com

boboffice
Posts: 89
Joined: Sun Mar 29, 2009 7:11 am
Location: Poway, San Diego County, CA

Re: Disabled Recall

Post by boboffice » Sun Mar 03, 2013 12:11 pm

jordansparks wrote:I think that may be the answer. Savvy, are you regularly setting patients inactive as part of your office processes? If so, that would explain why it's a problem for you, and not anyone else.

Here's a query to identify patients with the problem:
SELECT patient.PatNum AS PtNum, LName, FName
FROM recall,patient
WHERE recall.PatNum=patient.PatNum
AND recall.IsDisabled =1
AND patient.PatStatus=0

I have added it to our bug list and we will look into changing these back to enabled as patients are set active.
We were also having the same problem. I now realize it may be related to setting patients inactive. We are using the inactive status to indicate patients who are not active but are likely to come back in the future. Archived patients are the ones who are very likely not to come back. The reason we are doing this is so we can quickly identify from the patient list who is overdue despite a few attempts to contact. I think recall should NOT be disabled on inactive patients just like they are not removed from the patient selection list. If this is the incorrect way to use inactive status, then what really is inactive status for? If anything the "not a patient" people should be removed from the patient selection list.

Partly, this comes back to the patient selection list in my opinion. It really needs to be able to be customized. The ability to customize lists and their appearance is my absolute favorite thing about open dental. It makes sense to be able to customize this list too. It would be nice to see color to indicate whether they have an appointment or not and how far overdue they are, whether they have an outstanding balance, et cetera. There are so many things that could be done to improve the functionality of this list. I guess this is beginning to sound like the existing feature request, huh?

For now can we get a option to have inactive status disable recall? I personally would turn this option to OFF.
Robert Marcus DMD
Univ. of CT '93
Poway, CA

User avatar
jordansparks
Site Admin
Posts: 5739
Joined: Sun Jun 17, 2007 3:59 pm
Location: Salem, Oregon
Contact:

Re: Disabled Recall

Post by jordansparks » Sat Mar 09, 2013 2:03 pm

The bug fix that we released reenables the recall when changing the status back to patient.
Jordan Sparks, DMD
http://www.opendental.com

Post Reply