<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: proc report ods pdf, title page and insert file in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434692#M20338</link>
    <description>Hi:&lt;BR /&gt;  I am fairly sure there have been other Forum postings on how to put a logo into a title for ODS PDF. I also thought that there were some Tech Support notes on the topic. Have you searched the Community Forum for previous postings? I did a quick search on support.sas.com and found this &lt;A href="http://support.sas.com/kb/36/707.html" target="_blank"&gt;http://support.sas.com/kb/36/707.html&lt;/A&gt; which shows how to 1) put a logo in a title statement and 2) how to make the logo clickable. If you do NOT want to make the logo clickable, you would leave off the URL= option in the code on the Full Code tab.&lt;BR /&gt;cynthia</description>
    <pubDate>Tue, 06 Feb 2018 21:09:29 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-02-06T21:09:29Z</dc:date>
    <item>
      <title>proc report ods pdf, cover page and insert file</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434561#M20336</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like&amp;nbsp;create a report that contains a table, from the code&amp;nbsp;(is OK) and the cover page before the table that has some text and logo from jpg fle. Is that possible? I have no solution for title page and inserted file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot,&lt;/P&gt;
&lt;P&gt;Svetlana&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
value aantal low-&amp;lt;100='GRAYC0';
value heroproep low-&amp;lt;1='VLIGB' 1-&amp;lt;3='VLIYG' 3-high='orange';
value kwaliteit low-&amp;lt;85='orange' 85-high='VLIGB';
value eersteverw 0-&amp;lt;5='VLIGB' 5-&amp;lt;7='VLIYG' 7-high='orange';
value vervolgverw 0-&amp;lt;3='VLIGB' 3-&amp;lt;5='VLIYG' 5-high='orange';
value aanlevertijd 0-&amp;lt;90='orange' 90-high='VLIGB';
value vorigeMX 0-&amp;lt;90='orange' 90-high='VLIGB';
run;
%let FolderForPDF = %str(X:\XXX\XXX_rapporten);
ods escapechar='^';
options missing='0' orientation=landscape nodate leftmargin=1.0in rightmargin=1.0in ;
ods listing close;
ods pdf file="&amp;amp;FolderForPDF.\&amp;amp;riziv1 .pdf." notoc;
proc report data=data.technische_recall_L1_&amp;amp;periode nowd spanrows  
style(header)=[background=LIPK] STYLE(Header)=[FONT_FACE=Times] STYLE(column)=[FONT_FACE=Times] ;
compute totaal_Aant&amp;amp;periode;
if totaal_Aant&amp;amp;periode&amp;lt;100 then call define(_row_,'style','style=[background=white]');
endcomp;
title f='Times' italic j=c h=18pt 'ME feedback eerste lezer 2010-2017';
title3 '^{newline 1}'; /* one extra line */
title4 j=c f='Times' italic h=18pt "Technische heroproep 2010-2017";
title5 '^{newline 2}'; /* insert extra spaces */
title6 j=l f='Times'  h=14pt italic "Tabel 1. Technische heroproep eerste lezer 2010-2017";
column 	('Jaar van de screening' year  )
		('1ste lezer' RIZIV_1ste_LEZER NameL1)
		('Totaal/aantal MX' totaal_Aant&amp;amp;periode)   
		('Technisch niet/interpreteerbaar' Aant_tni&amp;amp;periode Pct_tni&amp;amp;periode);
define year					 		/ center 'Jaar' 	;
define RIZIV_1ste_LEZER 			/ center 'RIZIV' 	;
define NameL1			 			/ 'Naam' 	;
define totaal_Aant&amp;amp;periode 			/ center 'N'  ;
define Aant_tni&amp;amp;periode 			/ center 'N' 		;
define Pct_tni&amp;amp;periode 				/ center '%' 		style(column)=[background=heroproep.];
run;
ods pdf text="^1n";
ods pdf text="^S={font=('Times New Roman',10pt)}De technische heroproepproportie staat voor het percentage 'technisch niet interpreteerbare' mammografieën.";	
ods pdf text="^1n";
ods pdf text="^S={font=('Times New Roman',10pt)}De Europese richlijnen stellen de volgende norm:";
ods pdf text="^S={font=('Times New Roman',10pt) background=VLIYG}- aanvaardbaar: maximaal 3% van de mammografieën met technische heroproep";							
ods pdf text="^S={font=('Times New Roman',10pt) background=VLIGB}- wenselijk: minder dan 1% van de mammografieën met technische heroproep.";							
ods pdf text="^1n";
ods pdf text="^S={font=('Times New Roman',10pt)}In bovenstaande tabel wordt de technische heroproepproportie per mammografische eenheid weergegeven, onderverdeeld per 1ste lezer.";
ods pdf text="^1n";
ods pdf text="^S={font=('Times New Roman',10pt) background=GRAYC0} Als de 1ste lezer minder dan 100 dossiers beoordeeld heeft, zijn de resultaten enkel indicatief (in grijs).";	
options orientation=landscape nodate nolabel;
ods pdf;
run;
ods pdf close;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 15:51:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434561#M20336</guid>
      <dc:creator>sjughent</dc:creator>
      <dc:date>2018-02-07T15:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: proc report ods pdf, title page and insert file</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434692#M20338</link>
      <description>Hi:&lt;BR /&gt;  I am fairly sure there have been other Forum postings on how to put a logo into a title for ODS PDF. I also thought that there were some Tech Support notes on the topic. Have you searched the Community Forum for previous postings? I did a quick search on support.sas.com and found this &lt;A href="http://support.sas.com/kb/36/707.html" target="_blank"&gt;http://support.sas.com/kb/36/707.html&lt;/A&gt; which shows how to 1) put a logo in a title statement and 2) how to make the logo clickable. If you do NOT want to make the logo clickable, you would leave off the URL= option in the code on the Full Code tab.&lt;BR /&gt;cynthia</description>
      <pubDate>Tue, 06 Feb 2018 21:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434692#M20338</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-02-06T21:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc report ods pdf, title page and insert file</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434709#M20340</link>
      <description>&lt;P&gt;Title text could be accomplished with either ODS TEXT or PROC ODSTEXT followed by an ODS PDF Startpage=NOW ; to insert a page break.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 22:06:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434709#M20340</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-06T22:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: proc report ods pdf, title page and insert file</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434922#M20350</link>
      <description>&lt;P&gt;Thanks fot your answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can I create the cover page, or put the tekst page between two tebles that created with proc report?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 15:54:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/434922#M20350</guid>
      <dc:creator>sjughent</dc:creator>
      <dc:date>2018-02-07T15:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc report ods pdf, cover page and insert file</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/436164#M20373</link>
      <description>&lt;P&gt;I've got the solution from hier &lt;A href="https://support.sas.com/resources/papers/proceedings09/043-2009.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings09/043-2009.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 08:24:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-report-ods-pdf-cover-page-and-insert-file/m-p/436164#M20373</guid>
      <dc:creator>sjughent</dc:creator>
      <dc:date>2018-02-12T08:24:46Z</dc:date>
    </item>
  </channel>
</rss>

