We are a large community health center, and have adopted the Visualutions Referral Tracking Tool. We no longer need the flags that are automatically sent to the Order Administrator desktop chosen for each location of care through admin. In fact, we very much want to turn them off, as we do hundreds of referrals per day. But blank that field and saving has no effect - the previous value is retained.
This is in Admin -> Codes -> Charts -> Order Defaults -> Referrals, where you highlight a location of care and click "Change..." - and the top field is "Order Administrator", which is the user desktop to which flags are sent.
This will remove the referral coordinator. You can look it up by loginname or pvid. If you need help let me know.
select usr.loginname,*
from orderdefaults inner join
usr on usr.pvid=orderdefaults.adminid
update orderdefaults set adminid = null
where adminid = <PUT IN PVID from USR TABLE you want removed>