<?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 do I run a sas program from another sas program in SAS Viya? in SAS Viya</title>
    <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915164#M2256</link>
    <description>&lt;P&gt;Could you try if you can acces a other sas-file in '/Users/ryanb/My Folder' ? So you can check you've access to the grandparent folder.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Feb 2024 22:30:23 GMT</pubDate>
    <dc:creator>MAGG</dc:creator>
    <dc:date>2024-02-08T22:30:23Z</dc:date>
    <item>
      <title>How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914822#M2242</link>
      <description>&lt;P&gt;I've used base SAS for 15 years and now I'm moving to Viya.&amp;nbsp; In base SAS I use a lot of %include statements to run other SAS programs from a SAS program, for example:&lt;/P&gt;
&lt;P&gt;%include 'C:/sample_sas_code.sas';&lt;/P&gt;
&lt;P&gt;runs sample_sas_code.sas from my sas program&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, when I try using the %include statement in Viya to run code I stored in my snippets folder I keep getting "ERROR: physical file does not exist".&amp;nbsp; I right click on the SAS program and select "insert as path" so I'm pretty sure the path is correct.&amp;nbsp; I'm guessing this is common knowledge but I've been googling this for a while and haven't been able to find the right word combination to find out how to achieve this in SAS Viya.&amp;nbsp; I've seen mention that %include doesn't work in Viya but maybe just not in CAS(?).&amp;nbsp; Is there someone who can point me in the right direction?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 06:31:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914822#M2242</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-07T06:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914827#M2244</link>
      <description>&lt;P&gt;You have stored your SAS program in a SAS Content folder. In order to access files from this location, you will need to use a FILENAME statement with a specific file access method. See this example below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename mypgm filesrvc folderpath="/Users/&amp;lt;your-userid&amp;gt;/My Folder/My Snippets";
%include mypgm(simple);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;See the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=default&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p0qapul7pyz9hmn0zfoefj0c278a.htm" target="_blank" rel="noopener"&gt;doc about FILESRVC&lt;/A&gt;&amp;nbsp; for more information. Make sure you look at the SAS Viya version that you use.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 07:50:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914827#M2244</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2024-02-07T07:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914887#M2245</link>
      <description>&lt;P&gt;Thanks for the reply BrunoMueller.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried the code exactly as you provided after replacing my userid (see below) but I'm getting an error message when running the filename statement:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Folder denoted by path '/Users/ryanb/My Folder/My Snippets' was not found.&lt;BR /&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;filename mypgm filesrvc folderpath="/Users/ryanb/My Folder/My Snippets";&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also right clicked on the My Snippets folder and selected "insert as path" and verified I was using the correct path.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 16:53:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914887#M2245</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-07T16:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914893#M2246</link>
      <description>&lt;P&gt;You are missing one argument&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;filename mypgm filesrvc folderpath="/Users/ryanb/My Folder/My Snippets" filename="your_program.sas";&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;filename ffile FILESRVC folderpath='your_folder_content_path' filename='your_program.sas';
%include ffile / source;
filename ffile clear;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 17:26:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914893#M2246</guid>
      <dc:creator>MAGG</dc:creator>
      <dc:date>2024-02-07T17:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914911#M2248</link>
      <description>&lt;P&gt;Thanks for your suggestion, MAGG.&amp;nbsp; I tried adding the sas program as you described but I'm still getting the same error message.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 19:02:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/914911#M2248</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-07T19:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915016#M2254</link>
      <description>&lt;P&gt;If your code is stored as a snippet, it is not a simple .sas file. But stored as a .csm file, see screenshot below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrunoMueller_0-1707381717855.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93372iB366425330021E16/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrunoMueller_0-1707381717855.png" alt="BrunoMueller_0-1707381717855.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;simple.sas can be executed as shown above. The files with the .csm extension stored an XML structure that contain the code and other information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if you want to %include code stored in SAS Content, it is best to store it as plain SAS program code.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 08:45:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915016#M2254</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2024-02-08T08:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915122#M2255</link>
      <description>&lt;P&gt;Thanks for the reply BrunoMueller.&amp;nbsp; I moved my code to another folder but I'm still getting the same error message.&amp;nbsp; The error message indicates a problem with the path.&amp;nbsp; Whether I try the filename statement with or without referencing the SAS code I get the same message so I don't think this is about the file extension.&amp;nbsp; When I right click my program and select properties it has a sas extension and the type is SAS Program.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename ffile FILESRVC folderpath='/Users/ryanb/My Folder/SAS_FILES' filename='program.sas';
%include ffile / source;
filename ffile clear;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV id="sasLogError1_1707413224733" class="sasError"&gt;ERROR: Folder denoted by path '/Users/ryanb/My Folder/SAS_FILES' was not found.&lt;/DIV&gt;
&lt;DIV id="sasLogError2_1707413224733" class="sasError"&gt;ERROR: Error in the FILENAME statement.&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;PRE id="pre_sasLog_26424" class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 17:35:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915122#M2255</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-08T17:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915164#M2256</link>
      <description>&lt;P&gt;Could you try if you can acces a other sas-file in '/Users/ryanb/My Folder' ? So you can check you've access to the grandparent folder.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 22:30:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915164#M2256</guid>
      <dc:creator>MAGG</dc:creator>
      <dc:date>2024-02-08T22:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915204#M2257</link>
      <description>&lt;P&gt;Please add a screenshot of the Explorer pane in SAS Studio for the folder in question so that we can see what it looks like and what kind of files are in the folder. Since you could save files to this folder access permissions should be ok.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also add the debug=http option to the FILENAME statement to get more details on what is failing&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename mypgm
 filesrvc
 folderpath="&amp;lt;your-folder&amp;gt;"
 debug=http
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Send the complete log.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 08:37:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915204#M2257</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2024-02-09T08:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915367#M2258</link>
      <description>&lt;P&gt;Thanks, BrunoMueller.&amp;nbsp; I think this image includes everything you mentioned.&amp;nbsp;&amp;nbsp;&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="Ryanb2_0-1707526806336.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93511i9ED9ECDDFFB69A91/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ryanb2_0-1707526806336.png" alt="Ryanb2_0-1707526806336.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2024 01:04:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915367#M2258</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-10T01:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915368#M2259</link>
      <description>&lt;P&gt;Linux paths are case sensitive. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the screenshot, it looks like the path may be /Users/RYANB/... instead of /Users/RyanB/...&lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2024 01:24:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915368#M2259</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-02-10T01:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915369#M2260</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/46197"&gt;@Ryanb2&lt;/a&gt;&amp;nbsp;The code you run works in my environment. I can also replicate the error you encounter by using an invalid path.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Question: If you run below code does this return RYANB?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put &amp;amp;=sysuserid;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Feb 2024 01:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915369#M2260</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-02-10T01:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915395#M2261</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could try insert as path feature from SAS-studio. So you are sure you are rigth on the capitals&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MAGG_0-1707568520648.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93518i9941002A9F535DBB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MAGG_0-1707568520648.png" alt="MAGG_0-1707568520648.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2024 12:36:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915395#M2261</guid>
      <dc:creator>MAGG</dc:creator>
      <dc:date>2024-02-10T12:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915518#M2262</link>
      <description>&lt;P&gt;Check the value of the SERVICESBASELURL option, using this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option=servicesbaseurl;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Does the URL match the URL used by SAS&amp;nbsp; Studio? The port number might be missing from the SAS Studio URL.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 08:58:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915518#M2262</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2024-02-12T08:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915623#M2264</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/46197"&gt;@Ryanb2&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;My understanding is that the snippets folder is a virtual folder and the contents are stored in the infrastructure data server.&lt;BR /&gt;You can add the snippet to an existing program or open the snippets as a program. (Place the mouse cursor and right click on the snippets folder and also on specific snippets folder. See if you can see a physical path in the properties)&lt;BR /&gt;What you went to achieve is something that is achievable but all depends on the way the environment at your end was set.&lt;BR /&gt;Do have a look at the documentation and particularly this &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Control-SAS-Studio-file-system-access-in-SAS-Viya-3-5/ta-p/634170" target="_blank" rel="noopener"&gt;Control SAS Studio file system access in SAS Viya 3.5 - SAS Support Communities&lt;/A&gt;.&lt;BR /&gt;Your local SAS Administrator should be able to assist.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 17:14:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915623#M2264</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-02-12T17:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915634#M2265</link>
      <description>&lt;P&gt;Thanks for the suggestion.&amp;nbsp; Sorry.&amp;nbsp; I was doing some masking so I doctored the image a bit.&amp;nbsp; I always use the insert as path option so case and path should not be the issue.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 18:06:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915634#M2265</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-12T18:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915636#M2266</link>
      <description>&lt;P&gt;Thanks, BrunoMueller.&amp;nbsp; I ran your code and I can see the URL in the log doesn't match the URL I currently see in my session nor does this URL include anything that looks like a port number.&amp;nbsp; I'm not sure I know what to do with this information.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 18:10:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915636#M2266</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-12T18:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915637#M2267</link>
      <description>&lt;P&gt;Thanks, Sajid01.&amp;nbsp; If running from the snippets folder is more complicated then I don't have any concerns about running from a non-snippets folder, but running from a non-snippets folders gives me the same error message.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 18:12:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915637#M2267</guid>
      <dc:creator>Ryanb2</dc:creator>
      <dc:date>2024-02-12T18:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915646#M2268</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/46197"&gt;@Ryanb2&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;What you want to do is not complicated at all. The issue is identifying the physical location you can access.&lt;BR /&gt;You must seek the help of your local Admins to provide the path of physical location that you can access. Depends upon value of fileNavigationRoot in the Viya configuration.&lt;BR /&gt;If you click the server icon in SAS Studio V and right click. See if "properties" is listed. Typically Files and&amp;nbsp; Users(This is likely to be under SAS Contents) may have a folder with your ID. These typically represent physical paths accessible in SAS Viya.&lt;/P&gt;
&lt;H3 id="toc-hId-1689592237" style="margin-top: 21px; margin-bottom: 7px;"&gt;&amp;nbsp;&lt;/H3&gt;</description>
      <pubDate>Mon, 12 Feb 2024 18:52:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915646#M2268</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-02-12T18:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run a sas program from another sas program in SAS Viya?</title>
      <link>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915678#M2270</link>
      <description>&lt;P&gt;The two urls should be the same, see the screenshot below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrunoMueller_0-1707768911824.png" style="width: 780px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93581iB093179795A3114A/image-size/large?v=v2&amp;amp;px=999" role="button" title="BrunoMueller_0-1707768911824.png" alt="BrunoMueller_0-1707768911824.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If they are not the same then the FILESRVC file access method is not "talking" to same SAS Viya as you are using with SAS Studio. You should contact your SAS administrator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which SAS Viya version are you using? Go to the top right in SAS Studio, click on the user icon and then on About.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 20:23:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/How-do-I-run-a-sas-program-from-another-sas-program-in-SAS-Viya/m-p/915678#M2270</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2024-02-12T20:23:35Z</dc:date>
    </item>
  </channel>
</rss>

