We upgraded in may to CPS 12 but I have been unable to test and implement the CCC Basic forms as they continue to crash. They worked fine in our test environment. Once they quit working that's it you have to recopy them from the staging folder. The drop downs will not work and we get mel vomit on the forms and in the note. I copied the CCC Basic forms over again yesterday and they worked...until I copied the files from the CCC Update then the issues started again. Is anyone else having issues with these forms?
Justin
make sure your userlib file is pointing to the correct location.
These are our first CCC forms this is the new usrlib.txt file that is copied from the ccc update folder to the client folder. Does this look right?
// CLINICFOLDERNAME Clinic userlib.txt // Network path fn ccc_net_path() {DIR_EMR()} // Path for system files: fn ccc_sys_path() {ccc_net_path() + "\\CCC"} load(".\\usrlibccc-basic.txt") // Path for supplemental folder: fn supplement_path() {ccc_net_path() + "\\CLINICFOLDERNAME"} /* 9-11-06 */ load(supplement_path() + "\\CCC-fndef-Load-supplemental.ccc")
this is what ours looks like:
// CLINICFOLDERNAME Clinic userlib.txt
// Network path
fn ccc_net_path() {"\\\TJHP-APP\CCC"}
// Path for system files:
fn ccc_sys_path() {"\\\TJHP-APP\CCC\CCC"}
load("\\\TJHP-APP\CCC\usrlibccc-basic.txt")
// Path for supplemental folder:
fn supplement_path() {"\\\TJHP-APP\CCC\CLINICFOLDERNAME"}
/* 9-11-06 */
load(supplement_path() + "\\CCC-fndef-Load-supplemental.ccc")
Looks like you do not have your paths set up.
Looks like suefox51 is using a shared network location for the CCC files.
Justin your file is setup for local client installation of CCC files. Mine looks just like yours, as I do not have a shared location.
Cecil