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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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