Notifications
Clear all
Topic starter
I have an edit field in my form that I want to go into the instruction section of my MEL_ADD_ORDER, but for some reason this isn't working. I thought my code was correct.
MEL_ADD_ORDER("T", "Radiology", "CT ABDOMEN PELVIS WITH CONTRAS", "","","",DOCUMENT.NOTES_RAD, "", "", "", "")
My code works if that section is "" just not with the document variable.
Help Please!
-Holly
Posted : February 25, 2015 8:24 am
Not sure what the problem is. Your code seems to have everything in the right order.
Try putting str( ) around the document variable - see if that helps.
MEL_ADD_ORDER(“T”, “Radiology”, “CT ABDOMEN PELVIS WITH CONTRAS”, “”, ””, ””, str( DOCUMENT.NOTES_RAD ), “”, “”, “”, “”)
- Beverly
Posted : March 12, 2015 8:47 am
Topic starter
That worked! Thank you very much!
Posted : March 12, 2015 8:55 am