Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
05 ws-valid-rec-sw pic x(01) value 'r'.
88 reset-valid-rec-sw value 'r'.
88 valid-rec-found value 'f'.
05 ws-prev-key pic x(??) value space
01 ws-curr-rec.
05 ws-curr-key pic x(??) value space.
05 rest of curr
05 record
05 description
7000-get-valid-rec.
set reset-valid-rec-sw to true
perform until valid-rec-found
move ws-curr-key to ws-prev-key
read ip-rec into ws-curr-rec
at end
set ip-eof to true
move all x'ff' to ws-curr-key
not at end
add +1 to ip-cntr
end-read
if ws-curr-key not = ws-prev-key
set valid-rec-found to true
else
add +1 to dup-cntr
end-if
end-perform