Our practices were relying on the inquiries/Actionable letters to do outreach for immunizations as well as using immunization obs terms in protocols. What are people doing to replace this functionality since moving to the new immunization form? Any work arounds or suggestions? We thought of doing an inquiry on immunization billing codes but it would miss historical entries. We could write custom reports for outreach but not ideal as they won't save to chart like they did before.
GE has listed as SPR CISDB00063804 but no idea if or when they will address. Thanks.
I have a program that works with CPS to sync the immunizations to the OBS term after a user has mapped it. I have a few clients of mine who have purchased this for the same reason.
We are using Oracle EMR and have been on the form for a bit now so anything done would have to capture historically also. Thx. Jen
I can make it work with C-EMR also, i just have to reconfigure the code to work with oracle, but yes, i can make it work with C-EMR. And yes, it will retro, your previous entries as well.
I have been experimenting with some code in letters.
The commands should (although I am still not getting output) provide name of immunization and date. Once I can get to display, was then going to cycle through output to determine Pnumovax and Flu. Then, also look at OBS terms for each.
But, alas, I am stuck doing the Immun_Getlist and cycling thru the data.
{local hold = getfield(IMMUN_GETLIST("", "all"), "|", "")
local temp
global rslt = ""for i = 1, i <= size(hold), i = i + 1 do
temp = getfield(hold[i], "^", "")
rslt = rslt + temp[3] + if temp[4] <> "" then " - " else "" endif + temp[4] + " on " + temp[30] + HRET
endfor
rslt
}