Hello- We are a multispecialty group currently on CPS 12. I would like to know if there is a way to prevent the PCP, Responsible Prover, or the Reffering Provider from pulling over into the Contacts list, of a patient's registration. The reason being is if we print a Patient Profile, the first 3 contacts entered pull over to the Profile.. For some reason, CPS automatically pulls either Reffering Provider, Responsible provider and/or PCP from the Patient TAB to the Contacts TAB when entered. The Patient Profile will print the first 3 contacts in order they were ENTERED, despite rearranging the orders of the actualy contacts list. So there for the PCP on file, and Resp. Provider are always the first 2 in every patient Contact List. In the event of emergencies, we would like to be able to print a Patient Profile with the top 3 personal contacts to the patient, not who their PCP or Responsible Provider is within our practice. I hope this makes sense. Thanks for any help in advance! - Lyndsay
We'd like a solution for this, too. There is a stored procedure for the patient profile that pulls those top 3 contacts. That's what needs to be changed. We modified our report to remove providers, but still don't see the others.
Jsander.. would you mind sharing how you modified your Patient Profile report to eliminate the providers? If those are removed and you aren't seeing the others, what actually is printing on your profile sheets? TIA
What I get is a blank line for any of the contacts that aren't providers. At least it makes the profile sheet less cluttered with duplicate info.
I changed the formula field that prints the contacts:
if ("Provider" in {rpPatProfile.Contact1RelToPatient}) or ("PCP" in {rpPatProfile.Contact1RelToPatient}) then
""
else
{@Contact1Name} + " "+{rpPatProfile.Contact1RelToPatient}+ " "+{@Contact1Phone}\
Julie