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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 971 views
  • 0 likes
  • 2 in conversation