<?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: Suppress infile information from log in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Suppress-infile-information-from-log/m-p/458152#M284503</link>
    <description>&lt;P&gt;It might help to describe what you are doing to generate that message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Apr 2018 14:46:50 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-04-27T14:46:50Z</dc:date>
    <item>
      <title>Suppress infile information from log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppress-infile-information-from-log/m-p/458143#M284502</link>
      <description>&lt;P&gt;I am trying to suppress the infile information from the log. Does anyone know how to remove the Owner Name=, Last Date Modified=, Access Permissions=, etc such as below? I would still like to see other notes (nonotes option removes too much).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The infile&lt;BR /&gt;'YOUR-DATA-FILE' is:&lt;BR /&gt;&lt;BR /&gt;File&lt;BR /&gt;Name=YOUR-DATA-FILE,&lt;BR /&gt;Owner Name=userid,Group Name=dev,&lt;BR /&gt;Access Permission=rw-r--r--,&lt;BR /&gt;File Size (bytes)=1998&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:27:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppress-infile-information-from-log/m-p/458143#M284502</guid>
      <dc:creator>sas1002</dc:creator>
      <dc:date>2018-04-27T14:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress infile information from log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppress-infile-information-from-log/m-p/458152#M284503</link>
      <description>&lt;P&gt;It might help to describe what you are doing to generate that message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:46:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppress-infile-information-from-log/m-p/458152#M284503</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-27T14:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress infile information from log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppress-infile-information-from-log/m-p/458203#M284504</link>
      <description>&lt;P&gt;Perhaps the GENERIC option&amp;nbsp;is what you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;6    options generic=1;
7    filename temp temp;
8    data _null_;
9       file temp;
10      put 'x';
11      run;

NOTE: The file TEMP is:
      (system-specific pathname),
      (system-specific file attributes)

NOTE: 1 record was written to the file (system-specific pathname).
      The minimum record length was 1.
      The maximum record length was 1.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you want to see the file name you&amp;nbsp;can write it your self.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;67   options generic=1;
68   filename temp temp;
69   data _null_;
70      length Filename $128;
71      if _n_ eq 1 then putlog 'NOTE: ' Filename=;
72      file temp filename=filename;
73      put 'x';
74      run;

NOTE: The file TEMP is:
      (system-specific pathname),
      (system-specific file attributes)

NOTE: Filename=C:\Users\DATA~1.NUL\AppData\Local\Temp\2\SAS Temporary Files\_TD8420_HQ-SASPROD01_\#LN00016
NOTE: 1 record was written to the file (system-specific pathname).
      The minimum record length was 1.
      The maximum record length was 1.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 14:56:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppress-infile-information-from-log/m-p/458203#M284504</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-05-04T14:56:29Z</dc:date>
    </item>
  </channel>
</rss>

