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

I am getting this error

 

ERROR: Procedure TTEST not found.

 

I have made sure SID files is current.

I have reinstalled SAS

the problem has persisted.

 

 

Proc setinit gives me this

 

 

Original site validation data
Current version: 9.04.01M6P111518
Site name: '*** UNIVERSITY - SFA T&R'.
Site number: 70009089.
CPU A: Model name='' model number='' serial=''.
Expiration: 31JUL2021.
Grace Period: 45 days (ending 14SEP2021).
Warning Period: 49 days (ending 02NOV2021).
System birthday: 09JUL2020.
Operating System: W32_WKS .
Product expiration dates:
---Base SAS Software 31JUL2021 (CPU A) 
---SAS/STAT 31JUL2021 (CPU A) 
---SAS/GRAPH 31JUL2021 (CPU A) 
---SAS/ETS 31JUL2021 (CPU A) 
---SAS/FSP 31JUL2021 (CPU A) 
---SAS/OR 31JUL2021 (CPU A) 
---SAS/AF 31JUL2021 (CPU A) 
---SAS/IML 31JUL2021 (CPU A) 
---SAS/QC 31JUL2021 (CPU A) 
2 The SAS System 06:44 Monday, October 19, 2020

---SAS/SHARE 31JUL2021 (CPU A) 
---SAS/ASSIST 31JUL2021 (CPU A) 
---SAS/CONNECT 31JUL2021 (CPU A) 
---SAS/EIS 31JUL2021 (CPU A) 
---SAS/GIS 31JUL2021 (CPU A) 
---SAS/SHARE*NET 31JUL2021 (CPU A) 
---MDDB Server common products 31JUL2021 (CPU A) 
---SAS Integration Technologies 31JUL2021 (CPU A) 
---SAS/Secure 168-bit 31JUL2021 (CPU A) 
---SAS/Secure Windows 31JUL2021 (CPU A) 
---SAS/Genetics 31JUL2021 (CPU A) 
---SAS Enterprise Guide 31JUL2021 (CPU A) 
---SAS Bridge for ESRI 31JUL2021 (CPU A) 
---OR OPT 31JUL2021 (CPU A) 
---OR PRS 31JUL2021 (CPU A) 
---OR IVS 31JUL2021 (CPU A) 
---OR LSO 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to DB2 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to Oracle 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to SAP ASE 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to PC Files 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to ODBC 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to OLE DB 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to Teradata 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to Microsoft SQL Server 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to MySQL 31JUL2021 (CPU A) 
---SAS/IML Studio 31JUL2021 (CPU A) 
---SAS Workspace Server for Local Access 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to Netezza 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to Aster nCluster 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to Greenplum 31JUL2021 (CPU A) 
---SAS/ACCESS Interface to SAP IQ 31JUL2021 (CPU A) 
---SAS/ACCESS to Hadoop 31JUL2021 (CPU A) 
---SAS/ACCESS to Postgres 31JUL2021 (CPU A) 
---SAS/ACCESS to Impala 31JUL2021 (CPU A) 
---SAS/ACCESS to HAWQ 31JUL2021 (CPU A) 
---SAS/ACCESS to Amazon Redshift 31JUL2021 (CPU A) 
---High Performance Suite 31JUL2021 (CPU A) 
---SAS/ACCESS to JDBC

 

proc product status gives me this

 

! PROC PRODUCT_STATUS;RUN;

For Base SAS Software ...
Custom version information: 9.4_M6
Image version information: 9.04.01M6P110718
NOTE: PROCEDURE PRODUCT_STATUS used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds

I would appreciate any suggestions/ideas/solutions.....

Thanks

 

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

PROC SETINIT tells you the license applied.  TTEST is in SAS/STAT so you have the license -- check!

 

PROC PRODUCT_STATUS goes further and tells you what version of the license products you have installed.  You should see a line(s) like:

 

For Base SAS Software ...
   Custom version information: 9.4_M6
   Image version information: 9.04.01M6P110718
For SAS/STAT ...
   Custom version information: 15.1

If SAS/STAT isn't listed, then it might not be installed.  It needs to be selected as you install with the SAS deployment wizard.

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!

View solution in original post

9 REPLIES 9
ChrisHemedinger
Community Manager

PROC SETINIT tells you the license applied.  TTEST is in SAS/STAT so you have the license -- check!

 

PROC PRODUCT_STATUS goes further and tells you what version of the license products you have installed.  You should see a line(s) like:

 

For Base SAS Software ...
   Custom version information: 9.4_M6
   Image version information: 9.04.01M6P110718
For SAS/STAT ...
   Custom version information: 15.1

If SAS/STAT isn't listed, then it might not be installed.  It needs to be selected as you install with the SAS deployment wizard.

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
evp000
Quartz | Level 8

Hello,

What if I have SAS/STATS installed and still get the procedure not found message?  What would be the next step? Thank you. 

 

ChrisHemedinger
Community Manager

If PROC PRODUCT_STATUS is showing that SAS/STAT is installed and you know the procedure you're using is part of STAT, then you might need to contact SAS Technical Support for more checking. There might be a corrupt module or missing file.

 

Which SAS procedure are you trying to use?

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
evp000
Quartz | Level 8

Thanks.  PROC NPAR1WAY.  I'm writing on behalf of a statistician that I work with.  They also cannot run TTEST or PHREG. 

 

ChrisHemedinger
Community Manager

It sure seems that STAT isn't installed. If running in a SAS Grid environment, or via a SAS/CONNECT block (which remote-submits to another SAS session), make sure SAS/STAT is installed on the SAS session where this will execute.

 

SAS Tech Support can help determine what's going on if you want to open a track.

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
evp000
Quartz | Level 8

When running proc setinit, we have:

---SAS/STAT 30MAR2022 (CPU A)

It's PC SAS.  I will get them to open a ticket.  Thanks for your help. 

ChrisHemedinger
Community Manager

Can you share the output for proc product_status; run; -- that's going to tell you whether it's installed, not just licensed.

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
evp000
Quartz | Level 8

Ahhhh!! You're right, they have it licensed but not installed!  We'll contact our IT to get it installed.  Thank you so much! (I have it installed and assumed they had the same installation).  

evp000
Quartz | Level 8
Btw, proc product_status output had nothing about SAS/STATS.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 9 replies
  • 5872 views
  • 3 likes
  • 3 in conversation