| Syntax Color Legend |
|---|
| Command |
| Mandatory parameter |
| Optional parameter |
| Mandatory keyword |
| Optional keyword |
READAGAIN
Restarts the table query loop from the first record of the result set.
N.A.
None
None
The table query used may not have equal or start options.
agncount := 0
tq_cust.index (idx_cust_custno)
loop tq_cust
sme ('Custno is: ' + format (tq_cust.cust_no))
if tq_cust.cust_no >= 5
readagain
agncount += 1
if agncount = 3
break
endif
endif
endloop