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

Hi Forum,

I am using SAS EG 4.3.

I just double click EG Icon; open EG;then get the SAS editor embedded in it; and then do the SAS work as if I would do in a SAS PC version.

I want to know what is the exact version of SAS I am working within  the EG 4.3.

Could anyone please let me know how to find it.

Thank you

Mirisage

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
SAS Super FREQ


Hi:

  In your code window, display the GLOBAL macro variables for system information. %PUT will show output in the log. For example, in my log display, I have SAS 9.3 showing as the short version of SAS. If you look at the long value from &SYSVLONG4, you will see that I have release 1 from 06072011. I included the other information because if you ever need to open a track with Tech Support, they will want your Site #, and the CPU info, as well as the version info.

cynthia

  

Program to submit:

%put ** my information;

%put short version: &sysver;

%put version: &sysvlong4;

%put site #: &syssite;

%put cpu: &sysscp &sysscpl;

Log display:

332  %put ** my information;

** my information

333  %put short version: &sysver;

short version: 9.3

334  %put version: &sysvlong4;

version: 9.03.01M0P06072011

335  %put site #: &syssite;

site #: 0070068130

336  %put cpu: &sysscp &sysscpl;

cpu: WIN X64_7PRO

View solution in original post

7 REPLIES 7
Cynthia_sas
SAS Super FREQ


Hi:

  In your code window, display the GLOBAL macro variables for system information. %PUT will show output in the log. For example, in my log display, I have SAS 9.3 showing as the short version of SAS. If you look at the long value from &SYSVLONG4, you will see that I have release 1 from 06072011. I included the other information because if you ever need to open a track with Tech Support, they will want your Site #, and the CPU info, as well as the version info.

cynthia

  

Program to submit:

%put ** my information;

%put short version: &sysver;

%put version: &sysvlong4;

%put site #: &syssite;

%put cpu: &sysscp &sysscpl;

Log display:

332  %put ** my information;

** my information

333  %put short version: &sysver;

short version: 9.3

334  %put version: &sysvlong4;

version: 9.03.01M0P06072011

335  %put site #: &syssite;

site #: 0070068130

336  %put cpu: &sysscp &sysscpl;

cpu: WIN X64_7PRO

RLC
Calcite | Level 5 RLC
Calcite | Level 5

With

product_status;run;

Log:

For Base SAS Software ...

   Custom version information: 9.3_M1

   Image version information: 9.03.01M1P110211

For SAS/STAT ...

   Custom version information: 9.3_M1

For SAS/GRAPH ...

   Custom version information: 9.3_M1

Mirisage
Obsidian | Level 7

Hi RLC,

I submitted Cynthia's code.

I tried to run your code as well which is:

product_status;run;

However, it seems something is missing.

If you know what is missing please let me know.

Thanks

Mirisage

SASKiwi
PROC Star

Needs the word proc in front to make it a valid SAS statement:

proc product_status;run;


Mirisage
Obsidian | Level 7

Thank you very much SASKiwi.

Regards

Mirisage

RLC
Calcite | Level 5 RLC
Calcite | Level 5

Oui Je suis allé trop vite...

Mea culpa

Mirisage
Obsidian | Level 7

Hi Cynthia,

Thank you very much for this code.

It worked well and I identified my SAS version.

Thanks

Mirisage

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 7 replies
  • 1369 views
  • 3 likes
  • 4 in conversation