Notifications
Clear all
Topic starter
So I'm trying to push the below from a button to a edit field tied to an OBS, the below works fine with an item variable:
{DOCUMENT.BY13 = " " + user.realname + ", " +DATETIMESTAMP()}
But, this does nothing.
{OBSNOW("Demerol by") = " " + user.realname + ", " +DATETIMESTAMP()}
Am I missing something or will it not work this way? Any insight is greatly appreciated, thanks in advance.
Posted : June 29, 2014 10:12 pm
Pass it as a second argument -
{OBSNOW("Demerol by"," " + user.realname + ", " +DATETIMESTAMP())}
or
{OBSNOW("Demerol by",DOCUMENT.BY13 )}
Posted : June 29, 2014 10:39 pm
Topic starter
Perfect! Thank you so much.
Posted : June 29, 2014 11:05 pm