Ok. I tryed it again. And discovered that the problem only appears if i use "startpage=no" Here is my code, maybe you have an idea how to change this. I have a PDF Output. If not i will contact the Tech Support. And regards for your help as far. PROC TEMPLATE; DEFINE STYLE HUK2; PARENT = Styles.Printer; STYLE fonts from fonts / 'TitleFont' = ("Arial",24pt) 'TitleFont2' = ("Arial",16pt) 'StrongFont' = ("Arial",10pt,Bold) 'EmphasisFont' = ("Arial",10pt,Italic) 'headingEmphasisFont' = ("Arial",10pt,Bold Italic) 'headingFont' = ("Arial",10pt,Bold) 'docFont' = ("Arial",10pt) 'footFont' = ("Arial",5pt) 'FixedEmphasisFont' = ("Courier",9pt,Italic) 'FixedStrongFont' = ("Courier",9pt,Bold) 'FixedHeadingFont' = ("Courier",9pt,Bold) 'BatchFixedFont' = ("Courier",6.7pt) 'FixedFont' = ("Courier",9pt); CLASS color_list / 'link' = blue /* links */ 'bgH' = cxF4C61B /* row and column header background */ 'fg' = black /* tabletext color */ 'st' = cx6E6E6E /* system title color */ 'pt' = cx969696 /* proc title color */ 'ft' = #AAAAAA /* foot note color */ 'bg' = white /* page background color */ 'tb' = cx4F493B /* Table border color */ 'cb' = cxDCDCDC /* Cell background color */ 'tib' = cxF4C61B; /* Table Title background color */ CLASS Body from Document / bottommargin = 0.25in topmargin = 0.25in rightmargin = 0.25in leftmargin = 0.25in; CLASS BODY / PREIMAGE="W:\Prz-SAS92\HUKModifications\HUKStyles\Style\HUKBanner.png"; CLASS TABLE / padding = 5 borderspacing = 1px frame = box rules = all bordertopwidth = 1px borderleftwidth = 1px borderbottomwidth = 1px borderrightwidth = 1px bordercolor = color_list('tb') bordercollapse = separate; CLASS COLORS / 'headerfgemph' = color_list('fg') 'headerbgemph' = color_list('tib') 'headerfgstrong' = color_list('fg') 'headerbgstrong' = color_list('tib') 'headerfg' = color_list('fg') 'headerbg' = color_list('tib') 'datafgemph' = color_list('fg') 'databgemph' = color_list('cb') 'datafgstrong' = color_list('fg') 'databgstrong' = color_list('cb') 'datafg' = color_list('fg') 'databg' = color_list('cb') 'batchbg' = color_list('fg') 'batchfg' = color_list('bg') 'tableborder' = color_list('fg') 'tablebg' = color_list('fg') 'proctitlefg' = color_list('pt') 'proctitlebg' = color_list('bg') 'titlefg' = color_list('fg') 'titlebg' = color_list('bg') 'systitlefg' = color_list('st') 'systitlebg' = color_list('bg') 'contentfg' = color_list('fg') 'contentbg' = color_list('bg') 'contitlefg' = color_list('fg') 'confolderfg' = color_list('fg') 'conentryfg' = color_list('fg') 'docfg' = color_list('fg') 'docbg' = color_list('bg') 'captionbg' = color_list('bg') 'captionfg' = color_list('fg') 'notefg' = color_list('fg') 'notebg' = color_list('bg') 'link2' = color_list('link') 'link1' = color_list('link') 'bylinebg' = color_list('bg') 'bylinefg' = color_list('fg') 'gheader' = color_list('st'); class GraphBackground / backgroundcolor = white color = white; class Header from Header / Cellwidth = 10%; END; RUN; ODS PDF FILE = 'Y:\SAMPLE.PDF' STYLE=HUK2 STARTPAGE=NO; TITLE 'Title'; FOOTNOTE 'Footnote'; PROC PRINT DATA = SASHELP.CLASS; RUN; ODS PDF CLOSE;
... View more