I can accomplish using a form component with a data display and a check box using:
{!if document.datadisplay <> "" then DOCUMENT.MARK_AS_REVI = "Done" else "" endif}
{
OBSNOW("PROBLEMS REV", DOCUMENT.MARK_AS_REVI)
}
I would prefer to have it work withou needing a data display and just have it in the white space of a form, but I'm struggling to figure that out.
Any suggestions?
I would do it this way
{!IF PROB_LIST_CHANGES("LIST") <> "" THEN OBSNOW("PROBLEMS REV","Done") ELSE "" ENDIF}
That should work if you put it in the function panel (white area to the right)
Thank you! I was missing the "LIST" when I first tried that exact piece.
Not sure if I should start a new thread, but I'll ask here first. So the problems modules seems like it needs a refresh before the physical check box on that form become checked. I know it's getting check and closing and reopening shows this, is there a way to have that check box check without opening and closing the module?