<?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: Syntax is not generating output file on SAS OnDemand in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Syntax-is-not-generating-output-file-on-SAS-OnDemand/m-p/933230#M41952</link>
    <description>&lt;P&gt;Please describe exactly what "output file" you are expecting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc datasets with the MODIFY statement modifies a data set in place barring errors in code. The "output file" would be the same as the "input file".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jun 2024 22:03:42 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2024-06-20T22:03:42Z</dc:date>
    <item>
      <title>Syntax is not generating output file on SAS OnDemand</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Syntax-is-not-generating-output-file-on-SAS-OnDemand/m-p/933224#M41950</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am running a syntax on SAS OnDemand for academics to code date. I am a huge newbie to SAS for context. The syntax runs but it does not generate an output file. It says it sends it to a work library but it does not do that either. The specific code is attached below. How can I get it to save properly and generate an output. Thanks!&lt;/P&gt;&lt;P&gt;proc datasets library=work nolist;&lt;BR /&gt;modify final;&lt;BR /&gt;attrib _all_ label='';&lt;BR /&gt;quit;&lt;BR /&gt;/*&lt;BR /&gt;proc datasets lib=work nolist;&lt;BR /&gt;save final;&lt;BR /&gt;quit;*/&lt;BR /&gt;run;&lt;BR /&gt;%mend;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 20:38:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Syntax-is-not-generating-output-file-on-SAS-OnDemand/m-p/933224#M41950</guid>
      <dc:creator>AlUrmcSh</dc:creator>
      <dc:date>2024-06-20T20:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax is not generating output file on SAS OnDemand</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Syntax-is-not-generating-output-file-on-SAS-OnDemand/m-p/933227#M41951</link>
      <description>&lt;P&gt;Hi there! It appears that you are attempting to edit and save a dataset in SAS. Save is not a valid statement in the proc datasets procedure, and even if it weren't commented out, the save statement you're using is.&lt;/P&gt;
&lt;P&gt;To save the altered dataset in an everlasting library, you must establish a library reference to a physical location to which you possess write access. Here's an illustration of how to achieve this:&lt;/P&gt;
&lt;PRE&gt;libname mylib "/folders/myfolders/"; /* Specify your directory path */

data mylib.final; /* This will create a new dataset in the mylib library */
    set work.final;
run;&lt;/PRE&gt;
&lt;P&gt;The path /folders/myfolders/ is referenced by the library mylib in this code. The data phase generates a new dataset in the mylib library called final, which is equivalent to a physical file in the /folders/myfolders/ directory. The dataset work's set statement is read.last.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kindly substitute "/folders/myfolders/" with the real path to the dataset location. The changed dataset will be stored to the designated directory following the execution of this code and will remain there even after your SAS session has ended.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if you have any other questions!&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 21:45:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Syntax-is-not-generating-output-file-on-SAS-OnDemand/m-p/933227#M41951</guid>
      <dc:creator>himself</dc:creator>
      <dc:date>2024-06-20T21:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax is not generating output file on SAS OnDemand</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Syntax-is-not-generating-output-file-on-SAS-OnDemand/m-p/933230#M41952</link>
      <description>&lt;P&gt;Please describe exactly what "output file" you are expecting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc datasets with the MODIFY statement modifies a data set in place barring errors in code. The "output file" would be the same as the "input file".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 22:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Syntax-is-not-generating-output-file-on-SAS-OnDemand/m-p/933230#M41952</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-06-20T22:03:42Z</dc:date>
    </item>
  </channel>
</rss>

