Was this helpful?
ENDRETRIEVE Example
The following example illustrates the use of the endretrieve statement to break out of a retrieve loop in the event of an error:
## retrieve (ename = employee.empname, 
    eno = employee.empnum)
## {
 load ename, eno into data set
 if error then print "error while loading!"
##  endretrieve
 end if
## }
## /* endretrieve transfers control to here */
Last modified date: 11/28/2023