Is there anyway an action button can do multiple things. I need it to be connected to print a handout in the connection under options but also in the translation document in the chart that the handout was printed and be connected to an observation term in the translation. Anyone know if this can be done and how????
Action button with RUNPROCESS:
{PRINTHANDOUT("Handouts\MeritCare Health System\After Visit Summary")
DOCUMENT.MED_HANDOUT="After Visit Summary handout given to patient."}
where do i connect the observation term for the handout printed part at(DOCUMENT.MED_HANDOUT="After Visit Summary handout given to patient."}
{OBSNOW("obs term", "After Visit Summary handout given to patient.")}
action button can do any number of things. Assign the action button to a MEL function then just stack up the things you want to do in that function.
eg
{fn my_action_btn(){
printhandout(...
obsnow(......
document.temp12345 = "translate this"
execute_medication_reconciliation()
//can even trigger another function
return ""
}]