Does anyone know what field and table name the Eligible Professional (EP) stored in the the database?
There is no field for "Eligible Professional". You can search DoctorFacility table for entries with DEA number, NPI, UPIN, State License Number, etc.
It is in the USR table, generally accessed in Crystal Report as the USERINFO view.
in the field IS_EP
Thank you, that is exactly what I am looking for, but I don't see IS_EP in the USERINFO view.
For both CPS and C-EMR, you can find IS_EP in the USR table
SELECT IS_EP, USR.*
FROM USR
Hopefully this helps you.
You may need to gain access to the USR table, as by default you may not be able to see it.
If I remember correctly, on the DB, you would issue the following two commands:
Grant all on USR to report;
commit;
AWESOME! Thank you!