<?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: printing french char in a pdf file in MVS in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72566#M8286</link>
    <description>Hi &lt;BR /&gt;
         Cyinthia and Scott. Your answer put me to right direction. thanks for your help as you always do.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Inp</description>
    <pubDate>Thu, 24 Sep 2009 15:15:15 GMT</pubDate>
    <dc:creator>Inp</dc:creator>
    <dc:date>2009-09-24T15:15:15Z</dc:date>
    <item>
      <title>printing french char in a pdf file in MVS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72563#M8283</link>
      <description>Hi &lt;BR /&gt;
I want to write French char in a PDF file in mainframe. Can any one help me out how to do it. When I use usual method using put statment, it doesn't print french char é&lt;BR /&gt;
I am using &lt;BR /&gt;
&lt;BR /&gt;
MVS&lt;BR /&gt;
SAS 8.2&lt;BR /&gt;
&lt;BR /&gt;
//**********************************************************&lt;BR /&gt;
//STEP1    EXEC SAS&lt;BR /&gt;
//PDFRPT   DD DSN=VA562.PDF,&lt;BR /&gt;
//            DISP=(NEW,CATLG,DELETE),UNIT=INFOREAL,&lt;BR /&gt;
//            DCB=(RECFM=VB,LRECL=259,BLKSIZE=27998),&lt;BR /&gt;
//            SPACE=(TRK,(50,25),RLSE),LABEL=EXPDT=60005&lt;BR /&gt;
//SYSIN    DD DATA,DLM=##&lt;BR /&gt;
&lt;BR /&gt;
OPTIONS SYMBOLGEN MLOGIC MPRINT;&lt;BR /&gt;
&lt;BR /&gt;
DATA TEMP;&lt;BR /&gt;
INPUT X 1.;&lt;BR /&gt;
CARDS;&lt;BR /&gt;
2&lt;BR /&gt;
3&lt;BR /&gt;
RUN;&lt;BR /&gt;
&lt;BR /&gt;
ODS PDF FILE=PDFRPT NOTOC STYLE=NORMALP&lt;BR /&gt;
&lt;BR /&gt;
DATA _NULL_;&lt;BR /&gt;
SET TEMP;&lt;BR /&gt;
&lt;BR /&gt;
FILE PRINT PS=28 LS=139 LL=LNSLEFT;&lt;BR /&gt;
PUT&lt;BR /&gt;
 @  1 'réservée ' /&lt;BR /&gt;
   ODS PDF CLOSE;&lt;BR /&gt;
             ODS LISTING;&lt;BR /&gt;
&lt;BR /&gt;
RUN;</description>
      <pubDate>Mon, 21 Sep 2009 20:40:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72563#M8283</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2009-09-21T20:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: printing french char in a pdf file in MVS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72564#M8284</link>
      <description>You will want to explore the SAS NLS (National Language Support) resources, available with the SAS support  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  web SEARCH facility or consider the Google advanced search argument below:&lt;BR /&gt;
&lt;BR /&gt;
sas 8.2 nls national language support site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 22 Sep 2009 00:21:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72564#M8284</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-09-22T00:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: printing french char in a pdf file in MVS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72565#M8285</link>
      <description>Hi:&lt;BR /&gt;
  Generally, the FILE PRINT technique is not the technique recommended for use with the Output Delivery System. Instead, as per this Tech Support Note, FILE PRINT ODS is the recommended technique.&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/technote/ts664.pdf" target="_blank"&gt;http://support.sas.com/techsup/technote/ts664.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://ftp.sas.com/techsup/download/v7papers/ODS_DATA.pdf" target="_blank"&gt;http://ftp.sas.com/techsup/download/v7papers/ODS_DATA.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/14/766.html" target="_blank"&gt;http://support.sas.com/kb/14/766.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a000933279.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a000933279.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a00471329.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a00471329.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002414280.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002414280.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a000472814.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a000472814.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  With ODS, techniques like PUT @1, PUT @15, etc do not work as expected or in the same manner as they do with LISTING output.&lt;BR /&gt;
 &lt;BR /&gt;
  However, on a Windows system, using FILE PRINT ODS techniques, I was able to print the accent marks in a title, a footnote and a column header using the program code below.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
DATA TEMP;&lt;BR /&gt;
infile datalines;&lt;BR /&gt;
INPUT X 1.;&lt;BR /&gt;
return;&lt;BR /&gt;
datalines;&lt;BR /&gt;
2&lt;BR /&gt;
3&lt;BR /&gt;
;&lt;BR /&gt;
RUN;&lt;BR /&gt;
                      &lt;BR /&gt;
ods listing close;&lt;BR /&gt;
         &lt;BR /&gt;
filename pdfrpt 'c:\temp\pdfrpt.pdf';&lt;BR /&gt;
ODS PDF FILE=PDFRPT NOTOC;&lt;BR /&gt;
       &lt;BR /&gt;
  title 'réservée';&lt;BR /&gt;
  footnote 'réservée';&lt;BR /&gt;
  DATA _NULL_;&lt;BR /&gt;
    SET TEMP;&lt;BR /&gt;
    label x='réservée';&lt;BR /&gt;
    FILE PRINT ODS footnote;&lt;BR /&gt;
    PUT _ODS_;&lt;BR /&gt;
  run;&lt;BR /&gt;
ODS PDF CLOSE;&lt;BR /&gt;
ODS LISTING;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Tue, 22 Sep 2009 03:39:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72565#M8285</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-09-22T03:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: printing french char in a pdf file in MVS</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72566#M8286</link>
      <description>Hi &lt;BR /&gt;
         Cyinthia and Scott. Your answer put me to right direction. thanks for your help as you always do.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Inp</description>
      <pubDate>Thu, 24 Sep 2009 15:15:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/printing-french-char-in-a-pdf-file-in-MVS/m-p/72566#M8286</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2009-09-24T15:15:15Z</dc:date>
    </item>
  </channel>
</rss>

