BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Andrea_Peng
Obsidian | Level 7

I am trying to run an instrumental variable example but the error comes up as Procedure SYSLIN not found. I am using a paid version and I suppose my boss has bought it. My question is where I can find the SAS/ETS? If I could not find it in the computer, can I download it?

 

Thanks,

Andrea

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

@FreelanceReinh wrote:


You can print a list of the licensed SAS modules with

 

proc setinit;
run;

 

 


You would be looking for SAS/ETS for Proc SYSLIN in the results in the log.

If it is in the log then run

proc product_status;
run;

to see if it was actually installed. If ETS did not appear in the output for SETINIT you aren't currently licensed and @RW9 has the solution.

 

View solution in original post

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

You would need to contact either SAS rep, your manager, your IT group.  Its an additional package that needs to be added/licensed.

https://www.sas.com/en_us/software/ets.html

So you may have a license for SAS, however that is an additional component.

FreelanceReinh
Jade | Level 19


You can print a list of the licensed SAS modules with

 

proc setinit;
run;

 

 

ballardw
Super User

@FreelanceReinh wrote:


You can print a list of the licensed SAS modules with

 

proc setinit;
run;

 

 


You would be looking for SAS/ETS for Proc SYSLIN in the results in the log.

If it is in the log then run

proc product_status;
run;

to see if it was actually installed. If ETS did not appear in the output for SETINIT you aren't currently licensed and @RW9 has the solution.

 

Andrea_Peng
Obsidian | Level 7

Thanks for you two guys!