BookmarkSubscribeRSS Feed
Priyanka_b
Calcite | Level 5

We have SAS 9.4 M3. Receiving error from EG startup code. Preventing from opening output everytime. Please suggest how to resolve this error.

 

ERROR: Could not find extension: (sasgis)

 

/* ---------------------------------------------------- */

496  /* DATA step to determine whether certain products      */

497  /* are licensed/installed.                              */

498  /* ---------------------------------------------------- */

499 

500  /* Note: Use 'n' parameter to tslvl function if 9.4 M2

501  or later to avoid unnecessary warning. */

502  %macro GetTslvlParam2;

503   %if %_SAS_VERCOMP(9,4,2) >= 0 %then , 'n';

504  %mend;

505 

506  data _prodsavail;

507   length name $ 8 fullname $ 30 prodcode $ 10 prodmod $ 10 installed $ 12;

508   input fullname 1-30 name 32-39 prodcode prodmod;

509   licensed=sysprod(prodcode);

510   installed = tslvl(prodmod%GetTslvlParam2);

511  cards;

ERROR: Could not find extension: (sasgis)

 

2 REPLIES 2
paulkaefer
Lapis Lazuli | Level 10

This support note looks like it addresses the issue. If that doesn't help, you may want to open a track with SAS technical support.

Priyanka_b
Calcite | Level 5

FYI Unchecking show wrapper code  worked.

 EG->Tools->Options->Results General->Uncheck show generated wrapper code in log

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 1103 views
  • 0 likes
  • 2 in conversation