CREATE OR REPLACE procedure xheader is begin plpdf.SetPrintFont('Arial','BU',12); -- Arial bold, underline 12 -- Page title plpdf.PrintCell(0,10,'Page title text',0,0,'C'); -- print title of page plpdf.LineBreak; -- line break, height is 20 end; /