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

Hi,

 

Some macro's are standard within SAS, for example the %logtest. However, within SAS studio that my company runs on a server build by SAS I cannot run these macro's. Is there a method to install these macro's or do you need to "activate" them first?

 

Thanks in advance,

Gavin

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Many of the SAS supplied macros are dependent on the SAS products installed. If the macro is in a product not installed for you then that could be an issue. If you know which product the macro is supposed be associated with then you might run this code:

 

proc setinit;
run;

proc product_status;
run;

Setinit will tell which products are licensed and Product_status will tell which products were actually installed when you exam the Log. If the SAS product is in the Setinit results but not the Product_status then an update to your installation is in order. If not in Setinit then an expansion of the license is needed.

 

 

Sin %logtest is not installed in my fairly bare SAS installation I can't tell you which product to look for.

View solution in original post

2 REPLIES 2
ballardw
Super User

Many of the SAS supplied macros are dependent on the SAS products installed. If the macro is in a product not installed for you then that could be an issue. If you know which product the macro is supposed be associated with then you might run this code:

 

proc setinit;
run;

proc product_status;
run;

Setinit will tell which products are licensed and Product_status will tell which products were actually installed when you exam the Log. If the SAS product is in the Setinit results but not the Product_status then an update to your installation is in order. If not in Setinit then an expansion of the license is needed.

 

 

Sin %logtest is not installed in my fairly bare SAS installation I can't tell you which product to look for.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1522 views
  • 0 likes
  • 3 in conversation