BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Dear SAS support,

I’d like to create my own tagset, using PROC REPORT procedure in my own storage location.
The storage location is a SAS library that SAS session access using META libname engine :


libname tags meta library = custTags repname =Foundation metaout=data;

ods path (prepend) tags.templat (update);


proc template;
define tagset tagsets.myTag / store = tags.templat;

..................

end;

run;



when I run this code, I get errors in a SAS log file:

NOTE: Libref TAGS was successfully assigned as follows:
Engine: META
Physical Name:

12 proc template;
13 define tagset tagsets.myTag / store = tags.templat;
.......................
24 end;

ERROR: Requested function is not supported.
ERROR: Template 'Tagsets.Ba' was unable to write to template store!

25
26 run;


when I use BASE libname engine to access TAGS SAS library, then everything works well.

Could you please help me to find out how to solve this problem?

Thanks in advance,
Sarunas
1 REPLY 1
Tim_SAS
Barite | Level 11
You can't use the META libname engine to access a template library. Template libraries are accessible only via the default engine.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 599 views
  • 0 likes
  • 2 in conversation