We get the alias in the IMMUN_GETLIST call (AdministeredByName) but we need more info on the provider, e.g. their first and last names, and their ID.
Is there a way too lookup the alias and get the additional information?
REGPROVIDER looked hopeful.
Thanks.
You might also want to look at ORDERS_NEW(). REGPROVIDER will return the responsible provider, but if the patient sees someone else you might want to show the person who created the order for the immunization. You can loop through ORDERS_NEW("delimited") and get that for the visit. If you need a different time frame you can also look at ORDERS_AFTER() and ORDERS_PRIOR().
Brad
You could use find() and send the login name (from AdministeredByName) through to get more details:
find("_UserSearch", "FullName", "LoginName", "login_name_here")
find("_UserSearch", "DoctorFacilityId", "LoginName", "login_name_here")
