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

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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
  • 1418 views
  • 0 likes
  • 3 in conversation