<?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 contents in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708117#M217541</link>
    <description>&lt;P&gt;PROC CONTENTS works on SAS data sets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;26 proc contents data='D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas';
ERROR: Extension for physical file name "D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas" does not correspond to a valid
member type.&lt;/PRE&gt;
&lt;P&gt;You have data= and then a SAS program, not a SAS data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What are you trying to do?&lt;/P&gt;</description>
    <pubDate>Thu, 24 Dec 2020 18:52:54 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-12-24T18:52:54Z</dc:date>
    <item>
      <title>proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708112#M217539</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi! Could you help me with the problem below. Appreciate.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc contents data='D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas'; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 The SAS System segunda-feira, 21 de dezembro de 2020 21h05min00s&lt;/P&gt;&lt;P&gt;1 ;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Program';&lt;BR /&gt;4 %LET _CLIENTPROCESSFLOWNAME='Process Flow';&lt;BR /&gt;5 %LET _CLIENTPROJECTPATH='';&lt;BR /&gt;6 %LET _CLIENTPROJECTPATHHOST='';&lt;BR /&gt;7 %LET _CLIENTPROJECTNAME='';&lt;BR /&gt;8 %LET _SASPROGRAMFILE='';&lt;BR /&gt;9 %LET _SASPROGRAMFILEHOST='';&lt;BR /&gt;10&lt;BR /&gt;11 ODS _ALL_ CLOSE;&lt;BR /&gt;12 OPTIONS DEV=PNG;&lt;BR /&gt;13 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;14 FILENAME EGSR TEMP;&lt;BR /&gt;15 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR&lt;BR /&gt;16 STYLE=HTMLBlue&lt;BR /&gt;17 STYLESHEET=(URL="file:///D:/aplicativos/SASHome/SASEnterpriseGuide/7.1/Styles/HTMLBlue.css")&lt;BR /&gt;18 NOGTITLE&lt;BR /&gt;19 NOGFOOTNOTE&lt;BR /&gt;20 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;21 ENCODING=UTF8&lt;BR /&gt;22 options(rolap="on")&lt;BR /&gt;23 ;&lt;BR /&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;BR /&gt;24&lt;BR /&gt;25 GOPTIONS ACCESSIBLE;&lt;BR /&gt;26 proc contents data='D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas';&lt;BR /&gt;ERROR: Extension for physical file name "D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas" does not correspond to a valid&lt;BR /&gt;member type.&lt;BR /&gt;27 run;&lt;/P&gt;&lt;P&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;28&lt;BR /&gt;29 GOPTIONS NOACCESSIBLE;&lt;BR /&gt;30 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;31 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;32 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;33 %LET _CLIENTPROJECTPATHHOST=;&lt;BR /&gt;34 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;35 %LET _SASPROGRAMFILE=;&lt;BR /&gt;36 %LET _SASPROGRAMFILEHOST=;&lt;BR /&gt;37&lt;BR /&gt;38 ;*';*";*/;quit;run;&lt;BR /&gt;39 ODS _ALL_ CLOSE;&lt;BR /&gt;40&lt;BR /&gt;41&lt;BR /&gt;42 QUIT; RUN;&lt;BR /&gt;43&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 18:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708112#M217539</guid>
      <dc:creator>fpedrozam</dc:creator>
      <dc:date>2020-12-24T18:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708117#M217541</link>
      <description>&lt;P&gt;PROC CONTENTS works on SAS data sets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;26 proc contents data='D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas';
ERROR: Extension for physical file name "D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas" does not correspond to a valid
member type.&lt;/PRE&gt;
&lt;P&gt;You have data= and then a SAS program, not a SAS data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What are you trying to do?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 18:52:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708117#M217541</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-12-24T18:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708119#M217543</link>
      <description>I want to import and do some analysis</description>
      <pubDate>Thu, 24 Dec 2020 18:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708119#M217543</guid>
      <dc:creator>fpedrozam</dc:creator>
      <dc:date>2020-12-24T18:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708121#M217545</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/361801"&gt;@fpedrozam&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I want to import and do some analysis&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;PROC CONTENTS does neither. Why are you using PROC CONTENTS? Import from where?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 19:04:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708121#M217545</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-12-24T19:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708129#M217550</link>
      <description>import the file with extension .sas&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Dec 2020 19:39:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708129#M217550</guid>
      <dc:creator>fpedrozam</dc:creator>
      <dc:date>2020-12-24T19:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708136#M217554</link>
      <description>&lt;P&gt;A file with extension .sas is a SAS program, it has code that you (or someone) has written. It cannot be Imported because it does not have data. You cannot do analysis on it, because it is not data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In just about all versions of SAS that I know of, you use File-&amp;gt;Open to open this file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 20:42:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708136#M217554</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-12-24T20:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708169#M217573</link>
      <description>&lt;P&gt;I think this will fit you want to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%include&amp;nbsp;'D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas';&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Dec 2020 09:58:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708169#M217573</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2020-12-25T09:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708192#M217584</link>
      <description>wonderful. It worked. thanks</description>
      <pubDate>Fri, 25 Dec 2020 15:10:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/708192#M217584</guid>
      <dc:creator>fpedrozam</dc:creator>
      <dc:date>2020-12-25T15:10:22Z</dc:date>
    </item>
  </channel>
</rss>

