<?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: strip put works in enterprise guide but not in schedule sas management console in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/495018#M31898</link>
    <description>&lt;P&gt;We use the same scheduler ourselves. I'm still not sure what you are doing but you can't use SAS code in the scheduler itself, you can only use the scheduler to run SAS batch jobs - is this what you are doing and the batch job is giving different results than in EG?&lt;/P&gt;</description>
    <pubDate>Wed, 12 Sep 2018 20:31:12 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2018-09-12T20:31:12Z</dc:date>
    <item>
      <title>strip put works in enterprise guide but not in schedule sas management console</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494646#M31869</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am able to use the below in a conditional formula within my project in SAS enterprise guide, however, it is not accepted in sas management console upon scheduling.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use this is enterprise guide to convert a numeric ID to be character&lt;/P&gt;&lt;P&gt;(STRIP(PUT(t1.TAAGID,L10.)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I changed it to (replaced the "L" with "Z")&lt;/P&gt;&lt;P&gt;(STRIP(PUT(t1.TAAGID,Z10.)))&lt;/P&gt;&lt;P&gt;and it successfully ran in my schedule BUT it produced blanks. So clearly it didn't actually "work" it just didnt fail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have a suggestion of what I can change it to so that management console schedule accepts it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 21:39:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494646#M31869</guid>
      <dc:creator>agoldberg2018</dc:creator>
      <dc:date>2018-09-11T21:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: strip put works in enterprise guide but not in schedule sas management console</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494671#M31870</link>
      <description>&lt;P&gt;What do you mean by "Management Console Schedule"? A screenshot of where you tried to add this code would be helpful. Also what scheduler are you using. Platform Process Manager (LSF) or something else?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 23:04:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494671#M31870</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-09-11T23:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: strip put works in enterprise guide but not in schedule sas management console</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494815#M31877</link>
      <description>&lt;P&gt;hello i am using&amp;nbsp;SAS Management Console 9.4 to do the scheduling.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I monitor it using&amp;nbsp;Platform Process Manager. Does this help?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Sep 2018 13:00:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494815#M31877</guid>
      <dc:creator>agoldberg2018</dc:creator>
      <dc:date>2018-09-12T13:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: strip put works in enterprise guide but not in schedule sas management console</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494820#M31878</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/221709"&gt;@agoldberg2018&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you to check this with the SAS Administrator in your company. I suspect there are configuration differences between your SAS Workspace Server session (how code runs in EG) and the SAS Batch Server session (when scheduled).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It might be interesting if you add some lines&amp;nbsp;to the begining of your code as:&lt;/P&gt;
&lt;P&gt;%put _ALL_;&lt;/P&gt;
&lt;P&gt;proc options group="LANGUAGECONTROL INPUTCONTROL";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And run this code again in your EG session and your scheduled session.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or do a %put statement of a few key variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There might be significant differences on how the string is formed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#options-overview.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#options-overview.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Sep 2018 13:07:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/494820#M31878</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2018-09-12T13:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: strip put works in enterprise guide but not in schedule sas management console</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/495018#M31898</link>
      <description>&lt;P&gt;We use the same scheduler ourselves. I'm still not sure what you are doing but you can't use SAS code in the scheduler itself, you can only use the scheduler to run SAS batch jobs - is this what you are doing and the batch job is giving different results than in EG?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Sep 2018 20:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/strip-put-works-in-enterprise-guide-but-not-in-schedule-sas/m-p/495018#M31898</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-09-12T20:31:12Z</dc:date>
    </item>
  </channel>
</rss>

