<?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: how can i get the date while i using named input format?? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175857#M302171</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks i got it &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jul 2014 05:26:45 GMT</pubDate>
    <dc:creator>KrishnaChandra</dc:creator>
    <dc:date>2014-07-14T05:26:45Z</dc:date>
    <item>
      <title>how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175848#M302162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can i get the date while i using named input format??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data d;&lt;/P&gt;&lt;P&gt;input id= name=$20. dob=ddmmyy10. sal= desig=$20.;&lt;/P&gt;&lt;P&gt;format dob ddmmyy10.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;desig=Assistant manager id=100 name=krishna chandran sal=5000 dob=21/09/1989&lt;/P&gt;&lt;P&gt;id=101 dob=10/05/2010 desig=engineer sal=8000 name=hareesh Menon&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while i run this code i couldn't view the date in table.Any one can suggest some tips for fixing the problem as soon as possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 06:03:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175848#M302162</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-11T06:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175849#M302163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; I could do it in two steps...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data d;&lt;/P&gt;&lt;P&gt;input id= name=$20. dob=$10. sal= desig=$20.;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;desig=Assistant manager id=100 name=krishna chandran sal=5000 dob=21/09/1989&lt;/P&gt;&lt;P&gt;id=101 dob=10/05/2010 desig=engineer sal=8000 name=hareesh Menon&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data r;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set d;&lt;/P&gt;&lt;P&gt;&amp;nbsp; dob_ = input(dob,ddmmyy10.);&lt;/P&gt;&lt;P&gt;&amp;nbsp; format dob_ ddmmyy10.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; drop dob;&lt;/P&gt;&lt;P&gt;&amp;nbsp; rename dob_ = dob;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lakshmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 06:26:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175849#M302163</guid>
      <dc:creator>LakshmiK</dc:creator>
      <dc:date>2014-07-11T06:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175850#M302164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to give informat before the input line for dob that will resolve your problem i hope.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data d;&lt;/P&gt;&lt;P&gt;informat dob ddmmyy10.;&lt;/P&gt;&lt;P&gt;input id= name=$20. dob= sal= desig=$20.;&lt;/P&gt;&lt;P&gt;format dob ddmmyy10.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;desig=Assistant manager id=100 name=krishna chandran sal=5000 dob=21/09/1989&lt;/P&gt;&lt;P&gt;id=101 dob=10/05/2010 desig=engineer sal=8000 name=hareesh Menon&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sudeer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 06:38:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175850#M302164</guid>
      <dc:creator>Chrishi</dc:creator>
      <dc:date>2014-07-11T06:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175851#M302165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sudeer.&lt;/P&gt;&lt;P&gt; while i using with your code.The table shown the 3rd observations as filled with period(.)&lt;/P&gt;&lt;P&gt;I also need to get the columns in proper order..How could it possible Sudeer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 06:53:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175851#M302165</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-11T06:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175852#M302166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Lekshmi i got the output with your code..Thanks for your valuable reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 07:00:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175852#M302166</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-11T07:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175853#M302167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, I have never seen that type of cards statement use before.&amp;nbsp; Unusual.&amp;nbsp; Personally I would agree with Chrishi, one step approach.&amp;nbsp; Firstly define what you want your output dataset to look like - the attrib statements - then have an infile statement to define delimiter (because if you have more than 10 rows of data you don't want to be typing variable names each time - unless you like typing?).&amp;nbsp; Then input the data.&amp;nbsp; This approach would also work entering data into Excel for instance and then importing, just change the infile from cards to a filename. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 09:05:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175853#M302167</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-07-11T09:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175854#M302168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks RW9 for your valuable information.Am beginner in SAS Technology.I need to learn more from sas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 09:35:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175854#M302168</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-11T09:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175855#M302169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No probs.&amp;nbsp; I forgot to actually include the code on my post:&lt;/P&gt;&lt;P&gt;data d;&lt;/P&gt;&lt;P&gt;&amp;nbsp; attrib&amp;nbsp; id format=$20.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name format=$20.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dob format=ddmmyy10. informat=ddmmyy10.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sal format=best.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desig format=$20.; &lt;/P&gt;&lt;P&gt;&amp;nbsp; infile cards delimiter=',';&lt;/P&gt;&lt;P&gt;&amp;nbsp; input id name $ dob sal desig $;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;100,krishna chandran,21/09/1989,5000,assistant manager&lt;/P&gt;&lt;P&gt;101,hareesh menon,10/05/2010,8000,engineer&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 12:25:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175855#M302169</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-07-11T12:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175856#M302170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Named input can be useful.&amp;nbsp; I would write it like this to define the variables, provide INFORMATS and FORMATS as needed, and get them in the order you desire.&amp;nbsp; Plus it makes you look like you know what you're doing. &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; namedinput;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;attrib&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; id&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;8&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;attrib&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; name&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=$&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;20&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;attrib&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; dob&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;8&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;informat&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;ddmmyy10.&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;ddmmyyd10.&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;attrib&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; sal&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;8&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;attrib&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; desig &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=$&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;20&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;infile&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;cards&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (_all_)(=);&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;cards&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffc0;"&gt;desig=Assistant manager id=100 name=krishna chandran sal=5000 dob=21/09/1989&lt;BR /&gt;id=101 dob=10/05/2010 desig=engineer sal=8000 name=hareesh Menon&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 13:18:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175856#M302170</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-07-11T13:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175857#M302171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks i got it &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 05:26:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175857#M302171</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-14T05:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: how can i get the date while i using named input format??</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175858#M302172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks i got it &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 05:27:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-get-the-date-while-i-using-named-input-format/m-p/175858#M302172</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-14T05:27:38Z</dc:date>
    </item>
  </channel>
</rss>

