<?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 ERROR: DATA STEP Component Object failure.  Aborted during the COMPILATION phase.  ERROR 557-185 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/709997#M218477</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im new to sas and Im getting this error on my code:&lt;/P&gt;&lt;DIV class="sasError"&gt;ERROR: DATA STEP Component Object failure. Aborted during the COMPILATION phase.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR 557-185: Variable datasets is not an object.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;Im just trying to create a new data with a known set...&lt;PRE&gt;proc contents data=datasets.nlsy1; /** checked it exists**/&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data cmc_obes.nlsy_clean;/** different library **/&lt;BR /&gt;set=datasets.nlsy1;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;any ideas on how to fix it?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks, &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Thu, 07 Jan 2021 19:05:12 GMT</pubDate>
    <dc:creator>mpeinado</dc:creator>
    <dc:date>2021-01-07T19:05:12Z</dc:date>
    <item>
      <title>ERROR: DATA STEP Component Object failure.  Aborted during the COMPILATION phase.  ERROR 557-185</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/709997#M218477</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im new to sas and Im getting this error on my code:&lt;/P&gt;&lt;DIV class="sasError"&gt;ERROR: DATA STEP Component Object failure. Aborted during the COMPILATION phase.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR 557-185: Variable datasets is not an object.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;Im just trying to create a new data with a known set...&lt;PRE&gt;proc contents data=datasets.nlsy1; /** checked it exists**/&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data cmc_obes.nlsy_clean;/** different library **/&lt;BR /&gt;set=datasets.nlsy1;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;any ideas on how to fix it?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks, &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 07 Jan 2021 19:05:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/709997#M218477</guid>
      <dc:creator>mpeinado</dc:creator>
      <dc:date>2021-01-07T19:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: DATA STEP Component Object failure.  Aborted during the COMPILATION phase.  ERROR 557-185</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/709999#M218478</link>
      <description>&lt;P&gt;You have a syntax error - remove the equals sign from the SET statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data cmc_obes.nlsy_clean;/** different library **/
set datasets.nlsy1;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jan 2021 19:12:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/709999#M218478</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-01-07T19:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: DATA STEP Component Object failure.  Aborted during the COMPILATION phase.  ERROR 557-185</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/710018#M218479</link>
      <description>thank you!!&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Jan 2021 19:51:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/710018#M218479</guid>
      <dc:creator>mpeinado</dc:creator>
      <dc:date>2021-01-07T19:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: DATA STEP Component Object failure.  Aborted during the COMPILATION phase.  ERROR 557-185</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/710028#M218481</link>
      <description>&lt;P&gt;The attempt to assign the value of datasets.nlsy1 to the variable SET is what is causing that error message.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Referencing a name with a period in it in an expression is reserved for what SAS calls objects.&amp;nbsp; Like hash objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2021 20:03:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-DATA-STEP-Component-Object-failure-Aborted-during-the/m-p/710028#M218481</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-01-07T20:03:32Z</dc:date>
    </item>
  </channel>
</rss>

