Has anyone been succesful using this command? I'd like to add it into my OBSNOW string to attach a comment to obs. We basically have a health maintenance that allows folks to add a obs value for a previous date using this:
{fn rec_ConSub3(){OBSNOW("ctrldsubcont", DOCUMENT.CONTROLLED_S, DOCUMENT.DATE2) }}
DOCUMENT.CONTROLLED_S being the value field.
DOCUMENT.DATE2 being the date field to which the value gets pushed to.
I'd like to be able to add a comment to the date it's being pushed to.
Using the following will push my comment to today's date and not to the date my value is going:
{fn rec_MedHx3(){
OBSNOW("ConsentSignd", DOCUMENT.MED_HX_OBTAI, DOCUMENT.DATE)
OBSMODIFIERNOW("ConsentSignd", DOCUMENT.COMMENTS)
}}
Any ideas?
Adam,
Unfortunately, I don't believe there is currently a way to add a comment to an OBS term value that occurred on a date in the past. You can only add a comment to an OBS term whose clinical date is the current date which is what you are doing in this function:
{fn rec_MedHx3(){
OBSNOW(“ConsentSignd”, DOCUMENT.MED_HX_OBTAI, DOCUMENT.DATE)
OBSMODIFIERNOW(“ConsentSignd”, DOCUMENT.COMMENTS)
}}
The only way to add a comment to a previous OBS term is to do so manually using the flowsheet.
You would think comments could be made a part of OBSNOW along with tags.
Totally agree with your assessment. Perhaps this is something GE will address in the future.