Validation subroutine for Jim Dierking (AREV Specific)
At 11 DEC 1997 10:09:53AM abjones wrote:
The subroutine you described requires that the values
tested be in @RECORD, but @RECORD is not updated until
a prompt passes the validation test. The value to be
tested is placed into @ANS before calling the validation
routine so that you need to substitute the reference
from @RECORD to @ANS, that is
IF @RECORD=NET 30 DAYS" THEN RETURN_STATUS=1
should be
IF @ANS=NET 30 DAYS" THEN RETURN_STATUS=1
good luck!
At 21 DEC 1997 01:05AM Jim Dierking wrote:
Hello AB, I changed to @ans but still get an error message indicating
too many parameters have been passed. I would appreciate any other suggestions. TIA, Jim Dierking
At 21 DEC 1997 04:47AM Aaron Kaplan wrote:
Your validation routine needs to accept four parameters
subroutine stdConv( convType, value, branch, returnValue)If you aren't using all parameters, you would get his message.
apk@sprezzatura.com