- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
How to access Templates from SAS EG? I couldnt find sashelp.tmplmst when I expand the library SAShelp. I can see those when I rdp to the server and launch SAS session on the server.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Sorry I just realised you are looking at ODS templates. These are held in ITEMSTORES not catalogs, so you can't use proc CATALOG.
Instead you use PROC TEMPLATE in EG like this:
There is no way of viewing template item stores in a window via EG that I'm aware of but I agree it would be handy...
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank You for your response. But for some reasons, I am not able to see anything under Tasks > >Task Templates >> Task Template Manager. It is just blank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
SAS templates are stored in SAS catalog entries. You can't view the contents of SAS catalogs in vanilla EG. You can add the SAS catalog veiewer custom task:
http://blogs.sas.com/content/sasdummy/?s=catalog
But this still won't allow you to open a template entry.
This is an example of one of the restrictions of using EG...
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Of course to view a catalog, you can always use:
proc catalog catalog=libref.catalog-name;
contents;
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Agreed @paulkaefer - I meant to say view in a window as opposed to list the contents in the SAS log.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi All - I may have confused everyone. I am looking for the template files under sashelp.tmplmst. How can I access those from EG? I get the below error when I run the SAS code.
proc catalog catalog=sashelp.tmplmst;
contents;
run;
ERROR: Catalog SASHELP.TMPLMST does not exist.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Sorry I just realised you are looking at ODS templates. These are held in ITEMSTORES not catalogs, so you can't use proc CATALOG.
Instead you use PROC TEMPLATE in EG like this:
There is no way of viewing template item stores in a window via EG that I'm aware of but I agree it would be handy...
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank You Very much SASKiwi. This works.