VFE custom form for Centricity. I have several list boxes with document variables. I am wanting the document variables results and label to show in a data display so it can be inserted into the next office visit. I have the list box results displaying in the data display but i can not seem to get the label to display any suggestions?
Thanks
Victoria
ok, I am not 100% this will work for you.
I have a button that runs a function
{PRIOR_HPI()}
this is the function
/*prior HPI*/
{FN PRIOR_HPI()
{IF USERYESNO(OBSPREV("PEORTHO") + OBSPREV("ORTHO HPI 2") + hret + hret + "Accept previous value?") == "Yes"
then OBSNOW("PEORTHO",OBSNOW("PEORTHO") + OBSPREV("PEORTHO")) + OBSNOW("ORTHO HPI 2",OBSNOW("ORTHO HPI 2") + OBSPREV("ORTHO HPI 2"))
else ""
endif}}
it creates a breakout box which displays the previous HPI and asks if they want to add it to their note. It references two obs terms because sometimes our providers run over the 2000 character limit. However, the breakout box looks as though it is only one. If they say yes it will add the prior HPI to both multiline edit boxes.
Hope this helps.
I don't think you can pull the label over. The only thing to try would be to make them dynamic labels, although I don't know what kind of application you are looking for