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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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