<?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 import pdf in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324890#M62211</link>
    <description>&lt;P&gt;Roger DeAngelis posted the following solution on SAS-L. I'm not sufficiently familiar with SAS/IML's interface to R, so someone else will probably&amp;nbsp;have to revise&amp;nbsp;the code in the case I misunderstood the documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The solution requires installing two R packages (tm and slam) and downloading some open source programs (xpdf) from:&amp;nbsp;&lt;A href="https://www.google.ca/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=4&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=0ahUKEwjw-MeyvcTRAhWBcCYKHT_PBbEQFggvMAM&amp;amp;url=http%3A%2F%2Fwww.foolabs.com%2Fxpdf%2Fdownload.html&amp;amp;usg=AFQjCNEQLRycy31cAxNC9TGYlGcaSOFacQ&amp;amp;sig2=xqk3H2KULGBgTwvkcOme3Q" target="_blank"&gt;https://www.google.ca/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=4&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=0ahUKEwjw-MeyvcTRAhWBcCYKHT_PBbEQFggvMAM&amp;amp;url=http%3A%2F%2Fwww.foolabs.com%2Fxpdf%2Fdownload.html&amp;amp;usg=AFQjCNEQLRycy31cAxNC9TGYlGcaSOFacQ&amp;amp;sig2=xqk3H2KULGBgTwvkcOme3Q&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* create a pdf;&lt;BR /&gt;title;footnote;&lt;BR /&gt;ods pdf file="c:/art/class.pdf";&lt;BR /&gt;proc print data=sashelp.class noobs;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;run some code in R (this is the part where someone would have to show us how to do it using IML's interface to R):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;first the following line has to be run in R:&amp;nbsp;getwd()&lt;/P&gt;
&lt;P&gt;That will provide the address where the xpdf executables have to be stored&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;library("tm");&lt;BR /&gt; library("slam");&lt;BR /&gt; file &amp;lt;- "c:/art/class.pdf";&lt;BR /&gt; Rpdf &amp;lt;- readPDF(control = list(text = "-layout"));&lt;BR /&gt; corpus &amp;lt;- VCorpus(URISource(file),&lt;BR /&gt; readerControl = list(reader = Rpdf));&lt;BR /&gt; array &amp;lt;- as.data.frame(content(content(corpus)[[1]]));&lt;BR /&gt; colnames(array)&amp;lt;-"lines";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then the IML/R code would have to be inserted to make the file array available to sas as work.array&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally, in this example, I used the following data step to create the desired SAS data set:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data class;&lt;BR /&gt;&amp;nbsp; set array (firstobs=5);&lt;BR /&gt;&amp;nbsp; if mod(_n_,2);&lt;BR /&gt;&amp;nbsp; name=scan(lines,1,' ');&lt;BR /&gt;&amp;nbsp; sex=scan(lines,2,' ');&lt;BR /&gt;&amp;nbsp; age=input(scan(lines,3,' '),8.);&lt;BR /&gt;&amp;nbsp; height=input(scan(lines,4,' '),8.);&lt;BR /&gt;&amp;nbsp; weight=input(scan(lines,5,' '),8.);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can't test the following as I've never used IML, but my best guess is that the actual code (above) would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="text"&gt;&lt;SPAN&gt;* create a pdf;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;title;footnote;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods pdf file="c:/art/class.pdf";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proc print data=sashelp.class noobs;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods pdf close;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;proc iml;&lt;BR /&gt;  submit / R;&lt;BR /&gt;    &lt;SPAN&gt;library("tm");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    library("slam");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    file &amp;lt;- "c:/art/class.pdf";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    Rpdf &amp;lt;- readPDF(control = list(text = "-layout"));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    corpus &amp;lt;- VCorpus(URISource(file),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    readerControl = list(reader = Rpdf));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    array &amp;lt;- as.data.frame(content(content(corpus)[[1]]));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    colnames(array)&amp;lt;-"lines";&lt;BR /&gt;  endsubmit;&lt;BR /&gt;  call ImportDataSetFromR("work.array","array");&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;data class;&lt;BR /&gt;&amp;nbsp; set array (firstobs=5);&lt;BR /&gt;&amp;nbsp; if mod(_n_,2);&lt;BR /&gt;&amp;nbsp; name=scan(lines,1,' ');&lt;BR /&gt;&amp;nbsp; sex=scan(lines,2,' ');&lt;BR /&gt;&amp;nbsp; age=input(scan(lines,3,' '),8.);&lt;BR /&gt;&amp;nbsp; height=input(scan(lines,4,' '),8.);&lt;BR /&gt;&amp;nbsp; weight=input(scan(lines,5,' '),8.);&lt;BR /&gt;run;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 15 Jan 2017 17:06:46 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2017-01-15T17:06:46Z</dc:date>
    <item>
      <title>proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324268#M62163</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's difficult to google this: the results are all pdf file, treating about proc import with excel or csv...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wouldl ike to impoirt pdf file into a sas dataset.&lt;/P&gt;&lt;P&gt;Do you know how to do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for answers&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324268#M62163</guid>
      <dc:creator>fabdu92</dc:creator>
      <dc:date>2017-01-12T15:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324272#M62164</link>
      <description>&lt;P&gt;PDF is not intended as a data interchange file format so I do not believe there is any direct interface for Proc Import.&lt;/P&gt;
&lt;P&gt;The mixture of text, images and formatting would make it worse than Excel.&lt;/P&gt;
&lt;P&gt;If you have a tool such as Adobe Pro that will you let you extract bits and save them to other file formats that may be your best bet. Or try to find another PDF to Text conversion.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:21:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324272#M62164</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-01-12T15:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324277#M62165</link>
      <description>&lt;P&gt;Save yourself days of work. &amp;nbsp;Go back to the source data. &amp;nbsp;PDF is a report - i.e. not used as a data medium. &amp;nbsp;If you have to use it then likihood is it will be quicker to type it in by hand.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:23:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324277#M62165</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-01-12T15:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324278#M62166</link>
      <description>&lt;P&gt;I'm guessing that your .pdf file is some sort of report.&amp;nbsp; In that case it has other information than the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I usually just bring the .pdf file up on my screen and copy the data and then paste it into a text file for processing.&amp;nbsp; That works for one-offs that aren't too long.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have Adobe Acrobat, you can also export the .pdf content to a spreadsheet or text file.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324278#M62166</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2017-01-12T15:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324281#M62167</link>
      <description>&lt;P&gt;If it was that easy I would do it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But the provider send the file in pdf, and I can't ask him to modify that...&lt;/P&gt;&lt;P&gt;And it should be imported in a data set automatically so...I can't manually modify it in txt.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No solutions? &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Even difficult one?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:32:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324281#M62167</guid>
      <dc:creator>fabdu92</dc:creator>
      <dc:date>2017-01-12T15:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324283#M62168</link>
      <description>&lt;P&gt;you could write a script to export the data.&amp;nbsp; See&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.pdfscripting.com/public/Automating-Acrobat.cfm" target="_blank"&gt;https://www.pdfscripting.com/public/Automating-Acrobat.cfm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for some ideas.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324283#M62168</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2017-01-12T15:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324289#M62169</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;But the provider send the file in pdf" - are you paying for this? &amp;nbsp;If so&amp;nbsp;&lt;STRONG&gt;you&lt;/STRONG&gt; should be telling them what to send (i.e. data import specifications) and if they can't withdraw the contract or if you still have to use it, then increase your budget/resource needs. &amp;nbsp;Its funny how thinkgs suddenly can be done when you mention costs.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The easy option, copy paste each part. &amp;nbsp;The hard, PDF scripting. &amp;nbsp;You may be able to get something from PDFtk:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/" target="_blank"&gt;https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Or by exporting from Adobe, however its still going to be a chunk of work.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:52:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324289#M62169</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-01-12T15:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: proc import pdf</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324890#M62211</link>
      <description>&lt;P&gt;Roger DeAngelis posted the following solution on SAS-L. I'm not sufficiently familiar with SAS/IML's interface to R, so someone else will probably&amp;nbsp;have to revise&amp;nbsp;the code in the case I misunderstood the documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The solution requires installing two R packages (tm and slam) and downloading some open source programs (xpdf) from:&amp;nbsp;&lt;A href="https://www.google.ca/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=4&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=0ahUKEwjw-MeyvcTRAhWBcCYKHT_PBbEQFggvMAM&amp;amp;url=http%3A%2F%2Fwww.foolabs.com%2Fxpdf%2Fdownload.html&amp;amp;usg=AFQjCNEQLRycy31cAxNC9TGYlGcaSOFacQ&amp;amp;sig2=xqk3H2KULGBgTwvkcOme3Q" target="_blank"&gt;https://www.google.ca/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=4&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=0ahUKEwjw-MeyvcTRAhWBcCYKHT_PBbEQFggvMAM&amp;amp;url=http%3A%2F%2Fwww.foolabs.com%2Fxpdf%2Fdownload.html&amp;amp;usg=AFQjCNEQLRycy31cAxNC9TGYlGcaSOFacQ&amp;amp;sig2=xqk3H2KULGBgTwvkcOme3Q&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* create a pdf;&lt;BR /&gt;title;footnote;&lt;BR /&gt;ods pdf file="c:/art/class.pdf";&lt;BR /&gt;proc print data=sashelp.class noobs;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;run some code in R (this is the part where someone would have to show us how to do it using IML's interface to R):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;first the following line has to be run in R:&amp;nbsp;getwd()&lt;/P&gt;
&lt;P&gt;That will provide the address where the xpdf executables have to be stored&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;library("tm");&lt;BR /&gt; library("slam");&lt;BR /&gt; file &amp;lt;- "c:/art/class.pdf";&lt;BR /&gt; Rpdf &amp;lt;- readPDF(control = list(text = "-layout"));&lt;BR /&gt; corpus &amp;lt;- VCorpus(URISource(file),&lt;BR /&gt; readerControl = list(reader = Rpdf));&lt;BR /&gt; array &amp;lt;- as.data.frame(content(content(corpus)[[1]]));&lt;BR /&gt; colnames(array)&amp;lt;-"lines";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then the IML/R code would have to be inserted to make the file array available to sas as work.array&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally, in this example, I used the following data step to create the desired SAS data set:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data class;&lt;BR /&gt;&amp;nbsp; set array (firstobs=5);&lt;BR /&gt;&amp;nbsp; if mod(_n_,2);&lt;BR /&gt;&amp;nbsp; name=scan(lines,1,' ');&lt;BR /&gt;&amp;nbsp; sex=scan(lines,2,' ');&lt;BR /&gt;&amp;nbsp; age=input(scan(lines,3,' '),8.);&lt;BR /&gt;&amp;nbsp; height=input(scan(lines,4,' '),8.);&lt;BR /&gt;&amp;nbsp; weight=input(scan(lines,5,' '),8.);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can't test the following as I've never used IML, but my best guess is that the actual code (above) would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="text"&gt;&lt;SPAN&gt;* create a pdf;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;title;footnote;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods pdf file="c:/art/class.pdf";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proc print data=sashelp.class noobs;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods pdf close;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;proc iml;&lt;BR /&gt;  submit / R;&lt;BR /&gt;    &lt;SPAN&gt;library("tm");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    library("slam");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    file &amp;lt;- "c:/art/class.pdf";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    Rpdf &amp;lt;- readPDF(control = list(text = "-layout"));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    corpus &amp;lt;- VCorpus(URISource(file),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    readerControl = list(reader = Rpdf));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    array &amp;lt;- as.data.frame(content(content(corpus)[[1]]));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    colnames(array)&amp;lt;-"lines";&lt;BR /&gt;  endsubmit;&lt;BR /&gt;  call ImportDataSetFromR("work.array","array");&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;data class;&lt;BR /&gt;&amp;nbsp; set array (firstobs=5);&lt;BR /&gt;&amp;nbsp; if mod(_n_,2);&lt;BR /&gt;&amp;nbsp; name=scan(lines,1,' ');&lt;BR /&gt;&amp;nbsp; sex=scan(lines,2,' ');&lt;BR /&gt;&amp;nbsp; age=input(scan(lines,3,' '),8.);&lt;BR /&gt;&amp;nbsp; height=input(scan(lines,4,' '),8.);&lt;BR /&gt;&amp;nbsp; weight=input(scan(lines,5,' '),8.);&lt;BR /&gt;run;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Jan 2017 17:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-import-pdf/m-p/324890#M62211</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-01-15T17:06:46Z</dc:date>
    </item>
  </channel>
</rss>

