Hi folks,
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.
Thank you. I appreciate your input.
Hi
A style is stored in a SAS Library. You can tell ODS where to search for styles. see the ODS PATH statement.
Setting the path could be part of your autoexec file.
For Example:
* 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)
;
Bruno
Thank you, Cyntia and Bruno,
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.
Thank you!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.