Notifications
Clear all
Topic starter
I have made a custom form using VFE for orders. One of the orders is for a Hyalgan injection which adds the Dx, med, and dictation. Is there a way to have the dictation populate to the HPI-CCC form instead of a comment box I have on the VFE form?
Posted : January 11, 2013 7:44 am
If you are referring to the "History:" textbox on the HPI-CCC form, it looks like you can modify that by changing the document variable Document.TEMP_CCC_HPI_MLEF_GEN.
Posted : January 18, 2013 8:09 am
Topic starter
Yes that is the box I want my note to push to. On my custom form, when the doctor pushes a button, it creates a note. I want the note to land on the HPI-CCC form in that history box.
Posted : January 22, 2013 2:11 am
So you can append the content of that box with this code:
Document.TEMP_CCC_HPI_MLEF_GEN=Document.TEMP_CCC_HPI_MLEF_GEN+HRET+"My new content."
Posted : January 22, 2013 2:43 am