This example uses _pbpage to omit a page of a report. It outputs 100 lines and prints the page and line number on each line as in the example for _plineno. Here, the beginning page number is set to 2 so that page 1 does not print:

_pageno=1
_pbpage=2 // begin on page 2
set printer on
printjob
for i=1 TO 100
  ?? "Page",_pageno," Line",_plineno
  ? // now force a linefeed
endfor
endprintjob
set printer off
close printer // start printing