<?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: Automate  program running in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851303#M336462</link>
    <description>&lt;P&gt;Sure, the gentleman is on holiday .....so I wanted to know what is the way to check by myself if&amp;nbsp; "SAS Management Console's Schedule Manage" exists on&amp;nbsp; my SAS...&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Dec 2022 05:35:01 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2022-12-28T05:35:01Z</dc:date>
    <item>
      <title>Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851201#M336409</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to run SAS program everyday.&lt;/P&gt;
&lt;P&gt;Instead of run it manually everyday I want to run it automatically.&lt;/P&gt;
&lt;P&gt;Let's say that everyday the data set "&lt;CODE class=" language-sas"&gt;cars"&amp;nbsp;is&amp;nbsp;created&amp;nbsp;and&amp;nbsp;IF&amp;nbsp;the&amp;nbsp;data&amp;nbsp;set&amp;nbsp;exists&amp;nbsp;then&amp;nbsp;need&amp;nbsp;to&amp;nbsp;run&amp;nbsp;the&amp;nbsp;program.&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;If&amp;nbsp;data&amp;nbsp;set&amp;nbsp;cars&amp;nbsp;doesn't&amp;nbsp;exist&amp;nbsp;then&amp;nbsp;no&amp;nbsp;need&amp;nbsp;to&amp;nbsp;run&amp;nbsp;the&amp;nbsp;program.&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;What&amp;nbsp;is&amp;nbsp;the&amp;nbsp;way&amp;nbsp;to&amp;nbsp;do&amp;nbsp;it&amp;nbsp;please?&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;The&amp;nbsp;task&amp;nbsp;is&amp;nbsp;to&amp;nbsp;add&amp;nbsp;the&amp;nbsp;element&amp;nbsp;of&amp;nbsp;automatic&amp;nbsp;running&amp;nbsp;to&amp;nbsp;the&amp;nbsp;code&amp;nbsp;below&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data cars;
set sashelp.cars;
Run;

proc sql;
create table Report1 as
select make,
       sum(Invoice) as Total_Invoice format=comma23.,
	   count(*) as nr_rows format=comma23.,
	   calculated Total_Invoice/(select  sum(Invoice) as Total_Invoice  from sashelp.cars Where Origin='Europe') as PCT_Total_Invoice format=percent8.1,
	   calculated nr_rows/(select  count(*) as Total_nr  from sashelp.cars Where Origin='Europe') as PCT_nr_rows format=percent8.1
from cars
Where Origin='Europe'
group by make
order by Total_Invoice desc
;
quit;

proc export data=Report1 dbms=xlsx  outfile="/usr/local/SAS/SASUsers/LabRet/UserDir/Report1.XLSX"  replace;
run;

data _null_;
file sendit email
from="&amp;lt;Bob.Dave@gmail.com&amp;gt;"
to=("&amp;lt;Bob.Dave@gmail.com&amp;gt;")
cc=("&amp;lt;Bob.Dave@gmail.com&amp;gt;","&amp;lt;Bob.Dave@gmail.com&amp;gt;")
subject="Important Document"
importance="High"
attach=("/usr/local/SAS/SASUsers/LabRet/UserDir/udclk79/cars_Report.XLSX"
content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
put "Please find attached the file";
put;
put "Thanks!";
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Dec 2022 09:31:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851201#M336409</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-27T09:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851209#M336414</link>
      <description>&lt;P&gt;That's what you do with scheduling. First thing you need to find out is what schedulers are available to you and what functionality they offer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideally for your case you can use a &lt;EM&gt;file trigger event&lt;/EM&gt; meaning that the arrival of the SAS file is what triggers the scheduler to run your .sas program. Not all schedulers provide such trigger file functionality.&lt;/P&gt;
&lt;P&gt;Your other option is a &lt;EM&gt;time event &lt;/EM&gt;that executes your .sas program at a given time each day. You then check in your .sas program if the table exists and only execute the rest of the program if it does.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 10:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851209#M336414</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-12-27T10:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851212#M336415</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;I will go with second option :&lt;SPAN&gt;execute&amp;nbsp; the&amp;nbsp; .sas program at a given time each day. In&amp;nbsp; .sas program we check&amp;nbsp; if the raw data source&amp;nbsp; table exists and only execute the rest of the program if it does.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May you please show code how to do it?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 10:51:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851212#M336415</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-27T10:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851214#M336416</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;I will go with second option :&lt;SPAN&gt;execute&amp;nbsp; the&amp;nbsp; .sas program at a given time each day. In&amp;nbsp; .sas program we check&amp;nbsp; if the raw data source&amp;nbsp; table exists and only execute the rest of the program if it does.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May you please show code how to do it?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Either function EXIST for a SAS table or FEXIST for an external file. Usage examples are in the SAS docu referenced below.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.2/lefunctionsref/p1thpm9d6f5itan1c37zh8uz273z.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.2/lefunctionsref/p1thpm9d6f5itan1c37zh8uz273z.htm&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.2/lefunctionsref/p0gh473azqo3han1edlhbyt04gxa.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.2/lefunctionsref/p0gh473azqo3han1edlhbyt04gxa.htm&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 10:57:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851214#M336416</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-12-27T10:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851217#M336417</link>
      <description>&lt;P&gt;I would like to see&amp;nbsp; please the code for&amp;nbsp; "&lt;SPAN&gt;execute&amp;nbsp; the&amp;nbsp; .sas program at a given time each day.",&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The other parts I know how to do&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 11:04:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851217#M336417</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-27T11:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851219#M336419</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I would like to see&amp;nbsp; please the code for&amp;nbsp; "&lt;SPAN&gt;execute&amp;nbsp; the&amp;nbsp; .sas program at a given time each day.",&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The other parts I know how to do&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's what you do with a scheduler - which is not SAS code. Here the ones that are often available with a SAS installation (except for Platform Suite for SAS (lsf) which doesn't come "automatically" anymore with newer SAS versions).&amp;nbsp;&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/bicdc/9.4/scheduleug/titlepage.htm" target="_self"&gt;Scheduling in SAS® 9.4, Second Edition&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 11:10:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851219#M336419</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-12-27T11:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851236#M336428</link>
      <description>&lt;P&gt;How can I know if the scheduler is installed in my sas?&lt;/P&gt;
&lt;P&gt;I run this code to see my sas version&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put short version: &amp;amp;sysver; /* 9.4*/
%put version: &amp;amp;sysvlong4; /*version: 9.04.01M4P11092016*/
%put site #: &amp;amp;syssite; /*site #: 70072655*/
%put cpu: &amp;amp;sysscp &amp;amp;sysscpl; /*cpu: LIN X64 Linux*/&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I run this code too to see&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; proc product_status;run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is the Log&lt;/P&gt;
&lt;PRE&gt;1                                                          The SAS System                           08:30 Tuesday, December 27, 2022

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Program (8)';
4          %LET _CLIENTPROCESSFLOWNAME='Process Flow';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=PNG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         FILENAME EGSR TEMP;
15         ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR
16             STYLE=HTMLBlue
17             STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HTMLBlue.css")
18             NOGTITLE
19             NOGFOOTNOTE
20             GPATH=&amp;amp;sasworklocation
21             ENCODING=UTF8
22             options(rolap="on")
23         ;
NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR
24         
25         GOPTIONS ACCESSIBLE;
26          proc product_status;run;

For Base SAS Software ...
   Custom version information: 9.4_M4
   Image version information: 9.04.01M4P110916
For SAS/STAT ...
   Custom version information: 14.2
For SAS/GRAPH ...
   Custom version information: 9.4_M4
For SAS/ETS ...
   Custom version information: 14.2
For SAS/FSP ...
   Custom version information: 9.4_M4
For SAS/OR ...
   Custom version information: 14.2
For SAS/AF ...
   Custom version information: 9.4_M4
For SAS/IML ...
   Custom version information: 14.2
For SAS/CONNECT ...
   Custom version information: 9.4_M4
For SAS Risk Management ...
   Custom version information: 6.7
   Image version information: 9.04.01M0P110916
For SAS OLAP Server ...
   Custom version information: 9.4
For SAS LASR Analytic Server ...
   Custom version information: 2.8
For SAS/ACCESS to Hadoop ...
   Custom version information: 9.44
For SAS Enterprise Miner ...
   Custom version information: 14.2
2                                                          The SAS System                           08:30 Tuesday, December 27, 2022

For SAS/ACCESS to Postgres ...
   Custom version information: 9.4_M4
For SAS Integration Technologies ...
   Custom version information: 9.4_M4
For BIS Common Server Install ...
   Custom version information: 6.1
   Image version information: 9.04.01M0P040616
For SAS Credit Scoring for Banking Server ...
   Custom version information: 6.1
   Image version information: 9.04.01M0P040616
For SAS/Secure 168-bit ...
   Custom version information: 9.41_M1
For SAS Credit Scoring ...
   Custom version information: 14.2
For SAS High-Performance Forecasting ...
   Custom version information: 14.2
For Decision Manager Server ...
   Custom version information: 3.2
   Image version information: 9.04.01M0P110916
For Advanced Programming for LASR Analytic Server ...
   Custom version information: 2.8
For SAS Visual Analytics Server Components ...
   Custom version information: 7.3
   Image version information: 9.04.01M0P072915
For OpRisk VaR Server ...
   Custom version information: 6.1_M2
   Image version information: 9.04.01M0P042215
For SAS Regulatory Risk Management Server ...
   Custom version information: 5.4
   Image version information: 9.04.01M0P070616
For High Performance Suite ...
   Custom version information: 2.2_M5
For SAS/ACCESS Interface to DB2 ...
   Custom version information: 9.4_M2
For SAS/ACCESS Interface to Oracle ...
   Custom version information: 9.41
For Bus Rules Manager Server ...
   Custom version information: 3.2
   Image version information: 9.04.01M0P110916
For Stress Testing Server ...
   Custom version information: 2.3
   Image version information: 9.04.01M0P110916
For SAS/ACCESS Interface to PC Files ...
   Custom version information: 9.4_M4
For SAS/ACCESS Interface to ODBC ...
   Custom version information: 9.4_M4
For SAS/ACCESS Interface to Teradata ...
   Custom version information: 9.44
For SAS/ACCESS Interface to Microsoft SQL Server ...
   Custom version information: 9.42
NOTE: PROCEDURE PRODUCT_STATUS used (Total process time):
      real time           0.04 seconds
      user cpu time       0.01 seconds
      system cpu time     0.01 seconds
      memory              353.62k
      OS Memory           29348.00k
      Timestamp           12/27/2022 02:41:10 PM
      Step Count                        101  Switch Count  0
3                                                          The SAS System                           08:30 Tuesday, December 27, 2022

      Page Faults                       0
      Page Reclaims                     212
      Page Swaps                        0
      Voluntary Context Switches        59
      Involuntary Context Switches      0
      Block Input Operations            0
      Block Output Operations           0
      

27         
28         
29         GOPTIONS NOACCESSIBLE;
30         %LET _CLIENTTASKLABEL=;
31         %LET _CLIENTPROCESSFLOWNAME=;
32         %LET _CLIENTPROJECTPATH=;
33         %LET _CLIENTPROJECTPATHHOST=;
34         %LET _CLIENTPROJECTNAME=;
35         %LET _SASPROGRAMFILE=;
36         %LET _SASPROGRAMFILEHOST=;
37         
38         ;*';*";*/;quit;run;
39         ODS _ALL_ CLOSE;
40         
41         
42         QUIT; RUN;
43         
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 12:42:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851236#M336428</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-27T12:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851238#M336429</link>
      <description>&lt;P&gt;Bases on our conversation which type should I choose?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ronein_0-1672145089391.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/78888i015B63A4793CB4CC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ronein_0-1672145089391.png" alt="Ronein_0-1672145089391.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 12:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851238#M336429</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-27T12:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851249#M336433</link>
      <description>&lt;P&gt;On Linux, you use the &lt;FONT face="courier new,courier"&gt;cron&lt;/FONT&gt; daemon to run a program unsupervised at a given time. The program with which you set the entries in your cron table is called &lt;FONT face="courier new,courier"&gt;crontab&lt;/FONT&gt;. Do a Google search, you'll find lots of entries for how to use it. My preferred way is to have a personal file in my home directory (e.g. ~/crontab.txt) where I keep my entries, and then run &lt;FONT face="courier new,courier"&gt;crontab crontab.txt&lt;/FONT&gt; from the commandline.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 14:54:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851249#M336433</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-12-27T14:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851267#M336443</link>
      <description>&lt;P&gt;Do you have a SAS administrator? They will be familiar with your SAS installation's scheduling capabilities and how to set it up. We are flying blind here as we don't know what you have.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would recommend using SAS Management Console's Schedule Manager. That is a SAS tool that needs to be installed on your PC. Again your SAS administrator should be able to help.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 19:40:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851267#M336443</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-12-27T19:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851268#M336444</link>
      <description>What is the way to check if i have "SAS Management Console's Schedule Manager" without asking sas admin?</description>
      <pubDate>Tue, 27 Dec 2022 19:46:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851268#M336444</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-27T19:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851272#M336445</link>
      <description>&lt;P&gt;You either&amp;nbsp;&lt;EM&gt;are&lt;/EM&gt; the SAS admin, or you&amp;nbsp;&lt;EM&gt;ask&lt;/EM&gt; the SAS admin. Noone else can assist you with the details of your local SAS setup.&lt;/P&gt;
&lt;P&gt;It is one of the jobs of the SAS admin to assist SAS users.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 20:03:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851272#M336445</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-12-27T20:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851301#M336460</link>
      <description>&lt;P&gt;If you have SAS Management Console installed you will always find Schedule Manager as it is not an optional function. I don't understand your reluctance to talk to your SAS administrator as you will make much faster progress getting their help.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 05:13:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851301#M336460</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-12-28T05:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851303#M336462</link>
      <description>&lt;P&gt;Sure, the gentleman is on holiday .....so I wanted to know what is the way to check by myself if&amp;nbsp; "SAS Management Console's Schedule Manage" exists on&amp;nbsp; my SAS...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 05:35:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851303#M336462</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-28T05:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851305#M336463</link>
      <description>&lt;P&gt;SAS Management Console is a separate application that you can install from your SAS software depot. Once installed on your PC it should be listed in your SAS Software folder shortcuts, along with any other client SAS applications like Enterprise Guide.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 06:05:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851305#M336463</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-12-28T06:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851306#M336464</link>
      <description>In my SAS I don't see "Plug Ins"  icon.&lt;BR /&gt;Does it mean that I don't have SAS management console?&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Dec 2022 06:21:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851306#M336464</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2022-12-28T06:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851310#M336466</link>
      <description>&lt;P&gt;SMC is a separate Java-based application which should show up in your Windows Start menu in the SAS section. If it is not there, it must be installed from your organisation's SAS Depot, for which you will need the assistance of the SAS admin.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To schedule a SAS program the simple way, you "only" need commandline access to the SAS server via SSH or running external commands from SAS (XCMD system option must be enabled). With this you use crontab which I already referred to.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 08:07:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851310#M336466</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-12-28T08:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Automate  program running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851424#M336528</link>
      <description>&lt;P&gt;On your PC, left click with your mouse on the Windows icon in the bottom left corner of your screen, then scroll to the SAS folder. You should see something similar to this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASKiwi_0-1672266424235.png" style="width: 304px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/78910i054C2A746F02E557/image-dimensions/304x358?v=v2" width="304" height="358" role="button" title="SASKiwi_0-1672266424235.png" alt="SASKiwi_0-1672266424235.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If SAS Management Console is not listed then it is not installed and you need to install it.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 22:33:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Automate-program-running/m-p/851424#M336528</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-12-28T22:33:08Z</dc:date>
    </item>
  </channel>
</rss>

