BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
ProtoLithic
Calcite | Level 5

Hi -

 

I'm trying to save the results of proc cas to a datset. Specifically, using the code below, but it fails. There's no descriptive error, it just returns "Execution Halted". It works without the saveresult part, though, so that seems to be the problem.

 

proc cas;
   table.columninfo result = cinfo /
     table={caslib="Library",name="Table"};
   saveresult cinfo casout={caslib="Library",name="Variable_Info"}
   ;
quit;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

Using Form 3 syntax as per documentation for the SAVERESULT Statement works for me in a SAS Viya 4 environment.

cas mysess cassessopts=(caslib="casuser");

libname casuser cas;

data casuser.class;
    set sashelp.class;
run;

proc cas;
  table.columninfo result=cinfo / table={caslib="casuser", name="class"};
  saveresult cinfo caslib="casuser" casout="class_layout" replace;
quit;

View solution in original post

1 REPLY 1
Patrick
Opal | Level 21

Using Form 3 syntax as per documentation for the SAVERESULT Statement works for me in a SAS Viya 4 environment.

cas mysess cassessopts=(caslib="casuser");

libname casuser cas;

data casuser.class;
    set sashelp.class;
run;

proc cas;
  table.columninfo result=cinfo / table={caslib="casuser", name="class"};
  saveresult cinfo caslib="casuser" casout="class_layout" replace;
quit;

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
  • 945 views
  • 1 like
  • 2 in conversation