<?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: What is the best way to call a group of programs and reports repeatedly with a parameter? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/921777#M44539</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks for this. I'll look into Stored Procs as I have never used them in SAS, only SQL. As for the scheduler, we already use that but it has the limitation that we can't use libraries that require a login as the scheduler runs without a client.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very helpful though. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Mar 2024 11:36:22 GMT</pubDate>
    <dc:creator>Martin_Bryant</dc:creator>
    <dc:date>2024-03-26T11:36:22Z</dc:date>
    <item>
      <title>What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/919961#M44432</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a large SAS EG project containing programs and reports that needs to be run multiple times, each time with a different parameter value. Currently it is a project with a date prompt. I need to run this multiple times (and regularly) with different dates. Sticking everything into a macro would be a lot of work and messy. Is there a way to either...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Call a project with the prompt value in a script?&lt;/LI&gt;
&lt;LI&gt;Call put all of the programs and reports in a single program? (Then I can use a macro around a %include)&lt;/LI&gt;
&lt;LI&gt;Anything else that will solve this tidily?&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I will probably have to apply the solution to multiple projects so I'd like to do it right first time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Happy to answer questions. Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 15:57:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/919961#M44432</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-12T15:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/919995#M44433</link>
      <description>&lt;P&gt;How many times do you want to call your project and what are the dates you want to use?&amp;nbsp; Is there a rule for the dates like run for every date in the last 7 days for example? If there is a rule involved, you can code for it. If not you could record the dates in an input file and get your project to loop through them.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 19:16:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/919995#M44433</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-03-12T19:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920065#M44445</link>
      <description>&lt;P&gt;Well, I'm hoping that the call to run this multiple times can still be within SAS EG code and therefore I can use prompts to guide this. At worst I can have a SAS EG project to write the values to a data table that the main code can read and use to control the loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My question all hangs on the mechanics of how to code the loop. I am am pretty sure that I can do it with a macro but it wouldn't be a very tidy solution. I just don't think that macros are a very tidy solution to anything though. In fact I am really not very impressed with the majority of the SAS language.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible to get one SAS EG project to call another?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 07:41:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920065#M44445</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-13T07:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920068#M44446</link>
      <description>&lt;P&gt;If things have not changed recently, EG projects do not have the concept of loops. It is also not possible (IIRC) to connect a node in a process flow back to an earlier node in the flow, allowing you to create a "manual" loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IMO you need to convert your project to code, around which you can then wrap any of the looping methods provided by SAS (%DO in macro language, or using CALL EXECUTE with data read from a dataset).&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 08:07:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920068#M44446</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-03-13T08:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920070#M44447</link>
      <description>&lt;P&gt;Thanks. I had a nasty feeling that would be the case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OK. I'll start making a macro... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 08:15:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920070#M44447</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-13T08:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920072#M44448</link>
      <description>&lt;P&gt;You only need a macro if you want to use a %DO loop. With other methods, you "only" need to set the macro variable and %INCLUDE your code, once it's in its own file.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 08:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920072#M44448</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-03-13T08:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920093#M44449</link>
      <description>&lt;P&gt;If you are planning to extract code form EG project maybe this make your life easier:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-list-all-programs-included-in-an-egp-file/m-p/800489" target="_blank"&gt;https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-list-all-programs-included-in-an-egp-file/m-p/800489&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P.S. if you planing to share "a lot of code" with other users to run it, how about considering SAS Packages:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/yabwon/SAS_PACKAGES" target="_blank"&gt;https://github.com/yabwon/SAS_PACKAGES&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Intro video plus some examples (~60 mins):&amp;nbsp;&lt;A href="https://youtu.be/T52Omisi0dk&amp;amp;t=0s" target="_blank"&gt;https://youtu.be/T52Omisi0dk&amp;amp;t=0s&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 10:50:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920093#M44449</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2024-03-13T10:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920099#M44451</link>
      <description>&lt;P&gt;Many thanks. All of our files are stored on the server and we only get relative names, so I'm not sure that this will work for us, but it looks very useful if I can work out how to access our paths. Many thanks. We aren't allowed to store files externally to the server. Sigh.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 11:13:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920099#M44451</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-13T11:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920104#M44453</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/354322"&gt;@Martin_Bryant&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Many thanks. All of our files are stored on the server and we only get relative names, so I'm not sure that this will work for us, but it looks very useful if I can work out how to access our paths. Many thanks. We aren't allowed to store files externally to the server. Sigh.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What do you mean by relative names? Relative paths beginning from what's defined for EG folder "Files? If so right click onto one of the programs in EG and select "Copy path" and then paste it into a program node. That should give you the absolute path &amp;lt;path to Files&amp;gt;/&amp;lt;relative path&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With SAS 9.4 DI Studio got a loop transformation that also allows for parallel execution of the loops.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With Viya SAS Studio Flow there isn't a loop step yet but it shouldn't be hard to create a custom step for this (2 steps actually, loop start and loop end). There is a migration path for SAS EG flows to SAS Studio Flow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 12:00:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920104#M44453</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-03-13T12:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920114#M44454</link>
      <description>&lt;P&gt;Consider creating a SAS Custom Task. I haven't done this in a while so bear with me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS EG is written in C#. You can make a custom task that takes parameters (custom UI) and loops the tasks. I have built these for SAS clients before who were in a similar position. There is a C# interface you have to implement and then code up whatever you want. You are limited to the Framework but that is more than enough power.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://support.sas.com/documentation/onlinedoc/guide/customtasks/" target="_self"&gt;this page and book&lt;/A&gt;&amp;nbsp;on how to do it or refer to examples online. I have C#/SAS examples on my github site as well. There is also a program there that extracts out the SAS code from EG. However, I think a custom task works better (or is at least worth looking into).&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 13:09:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920114#M44454</guid>
      <dc:creator>AlanC</dc:creator>
      <dc:date>2024-03-13T13:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920115#M44455</link>
      <description>&lt;P&gt;We are on SAS EG 7.12.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, paths from the server. Thanks, I am familiar with the location as per the program properties, I just haven't used this path when referencing code.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 13:16:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920115#M44455</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-13T13:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920117#M44456</link>
      <description>&lt;P&gt;Custom tasks look interesting. Not used them before. The problem here is that I suspect our SysAdmin won't let me write C++ code and the last time I wrote C++ was probably 30 years ago. Never really mastered OO languages. I'm a Functional Language man. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 13:23:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920117#M44456</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-13T13:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920123#M44457</link>
      <description>&lt;P&gt;C#, not C++.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Custom tasks live on your side of the equation. You load them via the EG menu.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris' examples make it easy to customize. You can copy his code and modify as needed. You have to comply with the contract (i.e. interface). Ex. Martin&amp;nbsp; object implements IHuman and IMammal and therefore has certain properties and actions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your call but a way to fix the issue. Just wanted you to be aware of it. You could do a follow along on a simple task and see what you think.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 13:55:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920123#M44457</guid>
      <dc:creator>AlanC</dc:creator>
      <dc:date>2024-03-13T13:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920255#M44472</link>
      <description>&lt;P&gt;Ah, my mistake. Never done C#.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will certainly take a look at this. Thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 08:57:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/920255#M44472</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-14T08:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/921574#M44532</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/354322"&gt;@Martin_Bryant&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;In addition to the many suggestions above, I&amp;nbsp; suggest&amp;nbsp; the following:&lt;/P&gt;
&lt;P&gt;1&lt;STRONG&gt;.The prog&lt;/STRONG&gt;r&lt;STRONG&gt;am needs to be run multiple times and not sure how many times to run,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Convert your program to a stored process with prompts as needed.&amp;nbsp; &lt;BR /&gt;The stored process can be be run as and when needed&amp;nbsp; and the parameter input.&lt;/P&gt;
&lt;P&gt;In addition the stored process can be invoked as using http request (post or get as needed) / REST API.&lt;/P&gt;
&lt;P&gt;2.&lt;STRONG&gt;The program has to be run at predetermined intervals&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;Use a scheduler for example to run the job. The parameter value can be stored in a text file and the job reads it.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Mar 2024 00:34:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/921574#M44532</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-03-23T00:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/921777#M44539</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks for this. I'll look into Stored Procs as I have never used them in SAS, only SQL. As for the scheduler, we already use that but it has the limitation that we can't use libraries that require a login as the scheduler runs without a client.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very helpful though. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 11:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/921777#M44539</guid>
      <dc:creator>Martin_Bryant</dc:creator>
      <dc:date>2024-03-26T11:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call a group of programs and reports repeatedly with a parameter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/921779#M44540</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/354322"&gt;@Martin_Bryant&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you were to adopt the Stored Process approach suggested by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/131732"&gt;@Sajid01&lt;/a&gt;&amp;nbsp;, which is a good approach, here are few things to be aware of&lt;/P&gt;
&lt;P&gt;- Program permissions&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Output permissions&lt;/P&gt;
&lt;P&gt;Depending on which execution server (Stored Process Server / Workspace Server) you pick for your Stored Process program, the Read/Write permissions may need to be examined and changed. STP Server would execute the program using the &lt;STRONG&gt;sassrv&lt;/STRONG&gt; service account, while Workspace Server would use your &lt;STRONG&gt;userID&lt;/STRONG&gt;, as if you are running it interactively via EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Ahmed&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 12:49:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-is-the-best-way-to-call-a-group-of-programs-and-reports/m-p/921779#M44540</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2024-03-26T12:49:59Z</dc:date>
    </item>
  </channel>
</rss>

