<?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 Sharing a custom style across users on a Linux server in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282682#M16281</link>
    <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to share a custom style across users who rsubmit their jobs to a Linux server?--that is, without them having to individually run PROC TEMPLATE in order to define the new style. I tried creating the new style while being signed in as a power user, but the regular users can't access it. Some of them are only infrequent SAS programmers, so we are trying to minimize the amount of set-up tinckering they have to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you. I appreciate your input.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Jul 2016 13:49:05 GMT</pubDate>
    <dc:creator>DeaT</dc:creator>
    <dc:date>2016-07-07T13:49:05Z</dc:date>
    <item>
      <title>Sharing a custom style across users on a Linux server</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282682#M16281</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to share a custom style across users who rsubmit their jobs to a Linux server?--that is, without them having to individually run PROC TEMPLATE in order to define the new style. I tried creating the new style while being signed in as a power user, but the regular users can't access it. Some of them are only infrequent SAS programmers, so we are trying to minimize the amount of set-up tinckering they have to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you. I appreciate your input.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2016 13:49:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282682#M16281</guid>
      <dc:creator>DeaT</dc:creator>
      <dc:date>2016-07-07T13:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sharing a custom style across users on a Linux server</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282684#M16282</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A style is stored in a SAS Library. You can tell ODS where to search for styles. see the &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#p03q7l9284sg38n1d9186k3i7u3c.htm" target="_blank"&gt;ODS PATH&lt;/A&gt; statement.&lt;/P&gt;
&lt;P&gt;Setting the path could be part of your autoexec file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* show current ODS search path;
ods path show;

*
* add a new location before the current path
* location can be written to
*;
ods path
  (prepend) lib.itemstore (update)
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2016 14:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282684#M16282</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-07-07T14:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sharing a custom style across users on a Linux server</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282686#M16283</link>
      <description>Hi:&lt;BR /&gt;  Assuming you have written the template to a location on the server, the challenge is that EVERYBODY will need to modify their ODS PATH statement to point to the new template store. So, for example you might have this when you create your template:&lt;BR /&gt;libname permtemp '/unx/subdir/subdir/Lev1/SASApp/templates/special';&lt;BR /&gt;ods path permtemp.special(update) sasuser.templat(update) sashelp.tmplmst(read);&lt;BR /&gt;when YOU create the template on the server. But then each person who wants to use that template will need to  have this ODS PATH (or some form of this path) statement: &lt;BR /&gt;libname permtemp '/unx/subdir/subdir/Lev1/SASApp/templates/special';&lt;BR /&gt;ods path permtemp.special(read) sasuser.templat(read) sashelp.tmplmst(read);&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;libname permtemp '/unx/subdir/subdir/Lev1/SASApp/templates/special';&lt;BR /&gt;ods path (prepend) permtemp.special(read);&lt;BR /&gt;&lt;BR /&gt;And, if your users have Enterprise Guide or you're using the BI Platform and Web Report Studio, then there are other things you need to do to have a custom style accessible in all the client applications. So this might be a simple question or it might be more complicated depending on your configuration. You might want to lay it all out for Tech Support (configuration/software/etc) and ask them for the best way to do what you want.&lt;BR /&gt; &lt;BR /&gt;cynthia</description>
      <pubDate>Thu, 07 Jul 2016 14:18:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282686#M16283</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-07-07T14:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sharing a custom style across users on a Linux server</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282700#M16289</link>
      <description>&lt;P&gt;Thank you, Cyntia and Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, some of them are using Enterprise Guide, others BI, etc. I will get in touch with the tech support and try to find an acceptable solution for everyone.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2016 14:46:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Sharing-a-custom-style-across-users-on-a-Linux-server/m-p/282700#M16289</guid>
      <dc:creator>DeaT</dc:creator>
      <dc:date>2016-07-07T14:46:15Z</dc:date>
    </item>
  </channel>
</rss>

