Does anyone know how to pull the Assessments / Problems that are selected in the CPOE A&P-CCC Assessment #1 - #12 drop downs?
I have seen {ccc_view_assess("Last Visit","","7")} but that is not what I am looking for, I am looking to only pull the Values that are selected in the Drop Downs, Thanks...
DOCUMENT.TEMP_CCC_CPOE_PL_1
DOCUMENT.TEMP_CCC_CPOE_PL_2
DOCUMENT.TEMP_CCC_CPOE_PL_3
....
DOCUMENT.TEMP_CCC_CPOE_PL_12
justinbelcher said:
DOCUMENT.TEMP_CCC_CPOE_PL_1
DOCUMENT.TEMP_CCC_CPOE_PL_2
DOCUMENT.TEMP_CCC_CPOE_PL_3
....
DOCUMENT.TEMP_CCC_CPOE_PL_12
Doesn't seem to work for me.
Did you set values in the drop downs and then check the contents of those DOCUMENT variables?
I put them in, and in the Text component they show as Problem #1 ... Problem #12
If you're using VFE, in the text component be sure you checked the box that says "Make available to other forms", otherwise VFE will distort the variable name.
Also try creating an action button of RunProcess with the code:
{ userok(DOCUMENT.TEMP_CCC_CPOE_PL_1) }
And click on it after you have selected the first assessment on the CPOE form.
I am putting it in Handout, will this work for Handout MEL?
It works for me. The update will need to be open of course. Tested on CPS 10.2. Your handout would look like this:
Assessments:
{DOCUMENT.TEMP_CCC_CPOE_PL_1}
{DOCUMENT.TEMP_CCC_CPOE_PL_2}
Must of type something wrong the first time, they work now, thanks 🙂