I addition to the Truven handouts, our providers would like the ability for Patient Education Handouts printed from Patient Instructions to count for Meaningful Use. Thus far I have not been able to accomplish this.
Below is an example of the Patient Instruction. The handout prints, and documents that the handout was given, but it shows as UNMET on the CQR report for the Provide Patient Education measure. What am I doing wrong?
ccc_GI_PI_exec("Living With GERD^^^Recommend reviewing the Living with GERD handout that was printed at today's visit.^^^PRINTHANDOUT('Handouts\\CCC\\Otolaryngology\\Living With GERD')+add_muactivity_log(12,document.provider,'Living With GERD')")
Thank you in advance for your help!
I'm unsure what ccc_GI_PI_exec() does, but this should work for adding the activity log:
ccc_GI_PI_exec("Living With GERD^^^Recommend reviewing the Living with GERD handout that was printed at today's visit.^^^PRINTHANDOUT('Handouts\\CCC\\Otolaryngology\\Living With GERD')")
ADD_MUACTIVITY_LOG(12,USER.LOGINNAME,"Living With GERD")
Tried, but got system errors. Thank you anyway!
Tried, but got system errors. Thank you anyway!
I'm not familiar enough with CCC to provide a definitive answer, but Mikeseale pointed out that the second parameter of ADD_MUACTIVITY_LOG() is a loginname, you have a RealName. Try to substitute DOCUMENT.PROVIDER with find("_userSearch","loginname","RealName",DOCUMENT.PROVIDER). You might also try without the '+' sign.