BookmarkSubscribeRSS Feed
devi001
Obsidian | Level 7

Hello everyone,

 

In SAS Viya 4 model manager, while generating a scoring table, the default table name is too big (more than 32 characters length )can we rename the default table name? Or any suggestions to shorten the default table name?

We are facing as issue while reusing the same in SAS VIYA such as to in set statement while creating the table in work library.

 

Kindly help!

 

Thanks in advance!

1 REPLY 1
arthurdpereira
Obsidian | Level 7

I don't know if this will help you in Model Manager, but when I have an issue with a table that has more than 32 characters, I use the following macro in Studio:

 

/* Define the macro variables */
%let incaslib = ; /* CAS library where the table is located */
%let casdata = ; /* Name of the CAS table you want to rename */
%let casout = ; /* Name of the table you want to set in CAS */

/* Macro to load and promote a table in the CAS environment */
%macro sas_load_promote_cas(casout=, incaslib=, casdata=);

/* Drops the table in the CASLIB and loads the table into CAS */
proc casutil;
	droptable incaslib="&incaslib." casdata="&casdata." quiet;
	load casdata="&casdata." incaslib="&incaslib."
	outcaslib="&incaslib." casout="&casout.";
run;

/* Promotes the table to the CASLIB */
proc casutil;
	promote incaslib="&incaslib." casdata="&casout."
	outcaslib="&incaslib." casout="&casout.";
quit;
%mend sas_load_promote_cas;

/* Call the macro with the defined variables */
%sas_load_promote_cas(casout=&casout, incaslib=&incaslib, casdata=&casdata);

This way, I rename the table to a shorter name so it can be used within the SAS environment.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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