Notifications
Clear all
Topic starter
I'm sure I'm missing something simple, but is there a way to pull all the values and dates of a obs. I simply just want to display an obs value and date beside it for a historical view.
Posted : January 28, 2016 4:20 am
Topic starter
Soon as I finished submitting this question I found my answer, it's LIST_OBS. I'm going ot put it through the following function to format it as needed for the history view:
{global hold = getfield(LIST_OBS('PROB OB','Signed','delimited',"valuedate"), "|", "")
global temp
global rslt = ""
for i = 1, i <= size(hold), i = i + 1 do
temp = getfield(hold[i], "^", "")
if (rslt <> "") then
rslt = rslt + rtntype
endif
rslt = rslt + temp[1] + " "
endfor
rslt}
Posted : January 28, 2016 4:23 am