Great Thanks!
I'm new to creating forms, can someone please help me? I'm trying to create a form where different fields write to the same observation term with out overwriting it.
an obs term can only be set with one value during an update. if you want mote then one value stored in the obs term, you need to concatenate the values…OBSNOW("obs", field1 + ", " + field2 + ", " + field3 …)
Thank you!
OBSNOW("PHYSTHERTREA",DOCUMENT.VALUE_ONE+","+DOCUMENT.AMOUNT_OF_TI + HRET+ DOCUMENT.VALUE_TWO+","+DOCUMENT.AMOUNT_OF_TI1)
Why is this not working?
do you have it in an action button, or in the code panel on the right?
if in a button, it should set the obs term when clicked.
if in the code panel,
{OBSNOW("PHYSTHERTREA",DOCUMENT.VALUE_ONE+","+DOCUMENT.AMOUNT_OF_TI + HRET+ DOCUMENT.VALUE_TWO+","+DOCUMENT.AMOUNT_OF_TI1)}
should set the obs term anytime one of the variables change.