I'm trying to define my own template. However, I'm getting some warnings when I run it. What am I doing wrong? The code and selected log output is below. Thanks CODE proc template; define style Styles.BB1; parent = Styles.Journal; replace fonts / 'TitleFont'= ("Times Roman",12pt,Bold) 'TitleFont2'= ("Times Roman",12pt,Bold) 'StrongFont'= ("Times Roman",10pt,Bold) 'EmphasisFont'= ("Times Roman",10pt,Bold) 'HeadingEmphasisFont' = ("Times Roman",10pt,Bold) 'HeadingFont' = ("Times Roman",10pt) 'DocFont' = ("Times Roman",10pt) 'footfont' = ("Times Roman",10pt) 'FixedEmphasisFont' = ("Courier",10pt,Bold) 'FixedStrongFont' = ("Courier",10pt,Bold) 'FixedHeadingFont' = ("Courier",10pt,Bold) 'BatchFixedFont' = ("Courier",10pt) 'FixedFont' = ("Courier",10pt) ; replace color_list / 'link' = black 'bgH' = white 'bgT' = white 'bgD' = white 'fg' = black ; replace Table from Output / cellpadding = 2pt cellspacing = 0pt ; replace Pages from Document / marginleft = 16 marginright = 16 backgroundcolor = colors('bg') pagebreakhtml = html('break') tagattr = " onload=""expandAll()""" liststyletype = "decimal" ; end; run; ods rtf file="&wealth\Wealth_trends.rtf" style=BB1; LOG OUTPUT NOTE: Overwriting existing template/link: Styles.Bb1 NOTE: STYLE 'Styles.Bb1' has been saved to: SASUSER.TEMPLAT 249 run; NOTE: PROCEDURE TEMPLATE used (Total process time): real time 0.03 seconds cpu time 0.01 seconds 250 251 ods rtf file="&wealth\Wealth_trends.rtf" style=BB1; WARNING: Could not locate style reference 'BB1.colors("notebg")'. WARNING: Could not locate style reference 'BB1.colors("notefg")'. WARNING: Could not locate style reference 'BB1.colors("bg")'.
... View more