
I am so blessed to be given the opportunity to solve some of my own issues.
Here's the solution.
Everything on the /URM screen is in @RECORD
I have most things documented if you are interested; but not all.
@RECORD<30> has all the values entered for all the prompt questions
@RECORD<30,1> is the first question, @RECORD<30,2> the second,...
and the @RTN.FLAG works like expected and so does the @REFRESH
To solve my issue ' blank out #2 if you enter #1 and blank out #1 if you enter #2'
Create a process-after question #1
IF @RECORD<30,1> # "" AND @RECORD<30,2> # "" THEN
@RECORD<30,2> = ""
@WORK<3,2> = "" ;*** this was my /URM line item for question #2
@REFRESH = -2 ; *** refresh screen
END
Create a process-after for question #2
IF @RECORD<30,1> # "" AND @RECORD<30,2> # "" THEN
@RECORD<30,1> = ""
@WORK<3,1> = "" ;*** this was my /URM line item for question #1
@REFRESH = -2 ; *** refresh screen
END