<?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: Run Issues in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457074#M284395</link>
    <description>&lt;P&gt;You are neither reading in the data correctly&lt;STRIKE&gt; or asking for any analysis correctly&lt;/STRIKE&gt;. First get your data read correctly, which I showed you how in your last post. That method worked with this file as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: the rest is fine, all you need to do is figure out the column delimiters similar to what I did for your last question and it runs fine:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: The data set WORK.TOBFARM has 17 observations and 11 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.02 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;753 ;&lt;BR /&gt;754&lt;BR /&gt;755 proc lp;run;&lt;/P&gt;
&lt;P&gt;NOTE: There were 17 observations read from the data set WORK.TOBFARM.&lt;BR /&gt;NOTE: PROCEDURE LP used (Total process time):&lt;BR /&gt; real time 0.09 seconds&lt;BR /&gt; cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="delete_proc_lp.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20103iA91E0F34F2AEE0DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="delete_proc_lp.PNG" alt="delete_proc_lp.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Apr 2018 21:30:16 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-04-24T21:30:16Z</dc:date>
    <item>
      <title>Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457063#M284392</link>
      <description>&lt;P&gt;I can't get this to run. There are 8 columns not including the _id_, _type_, _rhs_ columns (11 total)&lt;/P&gt;&lt;P&gt;I'm doing this for an Agribusiness project and need the program to tell me the most profitable enterprise(s) or crop(s) to&amp;nbsp;produce&lt;/P&gt;&lt;P&gt;I'm not very familiar with this program&lt;/P&gt;&lt;P&gt;Here is the input.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data tobfarm;&lt;BR /&gt;infile datalines truncover;&lt;BR /&gt;input @1 _id_ Alfalfa Burley Sorg BHay WSDC CowCalf Corn Soybeans _type_ _rhs_;&lt;BR /&gt;datalines;&lt;/P&gt;&lt;P&gt;Profit 49 744 0 0 70 89.52 59.61 190 max&lt;BR /&gt;ContractedAcreage 0 1 0 0 0 0 0 0 le 10&lt;BR /&gt;Pasture 0 0 0 0 0 2.5 0 0 le 320&lt;BR /&gt;Land 1 0 1 1 1 0 1 1 le 275&lt;BR /&gt;January Labor 0 0 0 0 0 85 0 0 le 200&lt;BR /&gt;Febraury Labor 0 0 0 0 0 85 0 0 le 200&lt;BR /&gt;March Labor 0 0 0 0 0 85 0 0 le 200&lt;BR /&gt;April Labor .25 .5 .25 .25 1 85 .25 .25 le 200&lt;BR /&gt;May Labor 1 2.5 .25 1 1 85 .25 .25 le 200&lt;BR /&gt;June Labor 0 2 .25 .25 1 85 .25 .25 le 200&lt;BR /&gt;July Labor 0 .5 0 1 0 85 0 0 le 200&lt;BR /&gt;August Labor 1 2.5 0 0 0 85 0 0 le 200&lt;BR /&gt;September Labor .75 1.25 1.5 .75 .25 85 1.75 1.5 le 200&lt;BR /&gt;October Labor 0 1.25 1.5 .25 1.75 85 1.75 1.5 le 200&lt;BR /&gt;November Labor 0 1.25 .25 0 1.5 85 .75 .25 le 200&lt;BR /&gt;December Labor 0 .25 0 0 0 85 0 0 le 200&lt;BR /&gt;Capital 607 3306 400 436 630 1035 762 300 le 140000&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;proc lp;run;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 20:57:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457063#M284392</guid>
      <dc:creator>jbbush42</dc:creator>
      <dc:date>2018-04-24T20:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457067#M284393</link>
      <description>&lt;P&gt;All this program does is read in a data set. It creates a SAS data set and does literally nothing else.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/206272"&gt;@jbbush42&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I can't get this to run. There are 8 columns not including the _id_, _type_, _rhs_ columns (11 total)&lt;/P&gt;
&lt;P&gt;I'm doing this for an Agribusiness project and need the program to tell me the most profitable enterprise(s) or crop(s) to&amp;nbsp;produce&lt;/P&gt;
&lt;P&gt;I'm not very familiar with this program&lt;/P&gt;
&lt;P&gt;Here is the input.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data tobfarm;&lt;BR /&gt;infile datalines truncover;&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/187967"&gt;@input&lt;/a&gt; @1 _id_ Alfalfa Burley Sorg BHay WSDC CowCalf Corn Soybeans _type_ _rhs_;&lt;BR /&gt;datalines;&lt;/P&gt;
&lt;P&gt;Profit 49 744 0 0 70 89.52 59.61 190 max&lt;BR /&gt;ContractedAcreage 0 1 0 0 0 0 0 0 le 10&lt;BR /&gt;Pasture 0 0 0 0 0 2.5 0 0 le 320&lt;BR /&gt;Land 1 0 1 1 1 0 1 1 le 275&lt;BR /&gt;January Labor 0 0 0 0 0 85 0 0 le 200&lt;BR /&gt;Febraury Labor 0 0 0 0 0 85 0 0 le 200&lt;BR /&gt;March Labor 0 0 0 0 0 85 0 0 le 200&lt;BR /&gt;April Labor .25 .5 .25 .25 1 85 .25 .25 le 200&lt;BR /&gt;May Labor 1 2.5 .25 1 1 85 .25 .25 le 200&lt;BR /&gt;June Labor 0 2 .25 .25 1 85 .25 .25 le 200&lt;BR /&gt;July Labor 0 .5 0 1 0 85 0 0 le 200&lt;BR /&gt;August Labor 1 2.5 0 0 0 85 0 0 le 200&lt;BR /&gt;September Labor .75 1.25 1.5 .75 .25 85 1.75 1.5 le 200&lt;BR /&gt;October Labor 0 1.25 1.5 .25 1.75 85 1.75 1.5 le 200&lt;BR /&gt;November Labor 0 1.25 .25 0 1.5 85 .75 .25 le 200&lt;BR /&gt;December Labor 0 .25 0 0 0 85 0 0 le 200&lt;BR /&gt;Capital 607 3306 400 436 630 1035 762 300 le 140000&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;proc lp;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:06:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457067#M284393</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-24T21:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457071#M284394</link>
      <description>I know I haven't set this up properly. I was wanting to see what I left out/entered incorrectly to make it give me an analysis.</description>
      <pubDate>Tue, 24 Apr 2018 21:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457071#M284394</guid>
      <dc:creator>jbbush42</dc:creator>
      <dc:date>2018-04-24T21:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457074#M284395</link>
      <description>&lt;P&gt;You are neither reading in the data correctly&lt;STRIKE&gt; or asking for any analysis correctly&lt;/STRIKE&gt;. First get your data read correctly, which I showed you how in your last post. That method worked with this file as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: the rest is fine, all you need to do is figure out the column delimiters similar to what I did for your last question and it runs fine:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: The data set WORK.TOBFARM has 17 observations and 11 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.02 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;753 ;&lt;BR /&gt;754&lt;BR /&gt;755 proc lp;run;&lt;/P&gt;
&lt;P&gt;NOTE: There were 17 observations read from the data set WORK.TOBFARM.&lt;BR /&gt;NOTE: PROCEDURE LP used (Total process time):&lt;BR /&gt; real time 0.09 seconds&lt;BR /&gt; cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="delete_proc_lp.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20103iA91E0F34F2AEE0DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="delete_proc_lp.PNG" alt="delete_proc_lp.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:30:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457074#M284395</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-24T21:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457075#M284396</link>
      <description>&lt;P&gt;A couple of items to get started ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, use a LENGTH statement to define character fields.&amp;nbsp; This (or something like it) needs to go before the INPUT statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;length _ID_ $ 17&amp;nbsp; _type_ $ 3;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, change the data to get rid of embedded blanks.&amp;nbsp; "OctoberLabor" not "October Labor".&amp;nbsp; If you would like, you can use other variations such as "October_Labor".&amp;nbsp; But no embedded blanks allowed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are other ways to handle the issues involved ... I'm trying to stick to an approach that involves the least amount of change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally,&amp;nbsp; you may need to spell out more details than PROC LP.&amp;nbsp; I'm not sure about that and leave that part to you.&amp;nbsp; But if you continue to have problems, next time post the log rather than the program.&amp;nbsp; That's necessary for debugging in most cases.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:23:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457075#M284396</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-24T21:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457079#M284397</link>
      <description>The data is actually column delimited, see the attached .sas file he included or the previous post.</description>
      <pubDate>Tue, 24 Apr 2018 21:27:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457079#M284397</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-24T21:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457080#M284398</link>
      <description>Thanks. Project due on Thursday. I'm last minute to say the least.</description>
      <pubDate>Tue, 24 Apr 2018 21:27:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457080#M284398</guid>
      <dc:creator>jbbush42</dc:creator>
      <dc:date>2018-04-24T21:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457083#M284399</link>
      <description>See my edits, once the file is correct everything runs as expected.</description>
      <pubDate>Tue, 24 Apr 2018 21:30:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457083#M284399</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-24T21:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457084#M284400</link>
      <description>&lt;P&gt;It's worse than that.&amp;nbsp; In the attached .sas file, there are tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I try to answer what I can see, without looking at previous posts and usually without opening attachments.&amp;nbsp; Even without that information, the LENGTH statement would be a good idea.&amp;nbsp; I don't know if it's feasible to change the data and eliminate embedded blanks or not.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:32:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457084#M284400</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-24T21:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457085#M284401</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;It's worse than that.&amp;nbsp; In the attached .sas file, there are tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why would tabs be an issue?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;I try to answer what I can see, without looking at previous posts and usually without opening attachments.&amp;nbsp; Even without that information, the LENGTH statement would be a good idea.&amp;nbsp; I don't know if it's feasible to change the data and eliminate embedded blanks or not.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That approach seems fair.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:34:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457085#M284401</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-24T21:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457093#M284403</link>
      <description>&lt;P&gt;Tabs become an issue if they are not specified as legitimate delimiters:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If using column input, they throw off the column count.&amp;nbsp; Same when using formatted input.&amp;nbsp; If the column count is off, tabs can become part of the value of character variables.&amp;nbsp; And invalid data for numeric variables.&amp;nbsp; And if you're using list input it's a nightmare unless both tabs and blanks are legitimate delimiters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:49:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457093#M284403</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-24T21:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457098#M284404</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tobfarm;
infile datalines truncover;
informat _ID_ $20.;
input @1 _ID_  $20. @21 Alfalfa     @33 Burley  @41 Sorg    @49 BHay
  @57 WSDC    @65 CowCalf @73 Corn    @81 Soybeans    @93 _type_ $
@105    _rhs_;
datalines;
.....
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:58:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457098#M284404</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-24T21:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457099#M284405</link>
      <description>&lt;P&gt;Interesting, no issues on my side with the tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Tabs become an issue if they are not specified as legitimate delimiters:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If using column input, they throw off the column count.&amp;nbsp; Same when using formatted input.&amp;nbsp; If the column count is off, tabs can become part of the value of character variables.&amp;nbsp; And invalid data for numeric variables.&amp;nbsp; And if you're using list input it's a nightmare unless both tabs and blanks are legitimate delimiters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also set the options to have tabs automatically converted to spaces but if they had tab set to 3 or 2 spaces that could be problematic.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 21:59:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457099#M284405</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-24T21:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457399#M284406</link>
      <description>&lt;P&gt;I found your one post that was the edited top part and I copy pasted that into my inputs and it still won't run. Any chance you could attach the version you got to run so I could just download the input to run myself?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 17:01:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457399#M284406</guid>
      <dc:creator>jbbush42</dc:creator>
      <dc:date>2018-04-25T17:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457400#M284407</link>
      <description>&lt;P&gt;I got it to run! nevermind! thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 17:02:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457400#M284407</guid>
      <dc:creator>jbbush42</dc:creator>
      <dc:date>2018-04-25T17:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457405#M284408</link>
      <description>&lt;P&gt;Then mark the problem as solved, even if the solution is "I got it to run".&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 17:18:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457405#M284408</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2018-04-25T17:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Run Issues</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457469#M284409</link>
      <description>&lt;P&gt;No...at this point I've deleted all the work already &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 19:23:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Issues/m-p/457469#M284409</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-25T19:23:25Z</dc:date>
    </item>
  </channel>
</rss>

