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

I have a customer with a SAS 94 environment.

 

SAS has many products but I need to see what products the client is licensed for.

 

Is there a command I can run at the prompt to see all product entitlements that the client is licensed for?

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

There are two SAS procedures that you can run to provide the information you want:

proc product_status;
run;

proc setinit;
run;

PRODUCT_STATUS will list the SAS products installed, SETINIT will list the products licensed. Note, not all installed products may be licensed and not all licensed products may be installed.

View solution in original post

1 REPLY 1
SASKiwi
PROC Star

There are two SAS procedures that you can run to provide the information you want:

proc product_status;
run;

proc setinit;
run;

PRODUCT_STATUS will list the SAS products installed, SETINIT will list the products licensed. Note, not all installed products may be licensed and not all licensed products may be installed.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 428 views
  • 1 like
  • 2 in conversation