ROWS=PAGE prints only one row of variables for each observation on a page. This report is in Layout Produced by the ROWS=PAGE Option .
proc print data=empdata(obs=12) rows=page;
   id idnumber;
   title 'Personnel Data';
run;