BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi,

I am getting error while opening SAS information map using SAS EG 4.1.
Error as Follows,

The SAS System 14:51 Tuesday, April 8, 2008

1 ;*';*";*/;quit;run;
2 OPTIONS PAGENO=MIN;
3 /* SAS program to produce contents and filter datasets for the selected infomap */
4
5 /* Save off the current value of the validvarname option */
6 %let _imapValidVarName=%sysfunc(getoption(validvarname,keyword));
7
8 /* need for proper data column names in the InfoMap Libname Engine */
9 options validvarname=v7;
10
11 libname _egmle sasioime
12 user="nisha"
13 pw=XXXXXXXXXXXXXXXXXX
14 metaserver="sas"
15 metaport=8561
16 metarepository="Foundation"
17 mappath="/BIP Tree/ReportStudio/Maps/AGRI"
18 PRESERVE_TAB_NAMES=YES;
ERROR: SAS internal error -- The SAS MVA interface to the Java API could not be initialized.
ERROR: Error in the LIBNAME statement.

19
20 proc sql;
20 ! drop table WORK._EGMAPFILTERS;
WARNING: File WORK._EGMAPFILTERS.DATA does not exist.
WARNING: Table WORK._EGMAPFILTERS has not been dropped.

20 ! quit;
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds


21 ods output 'Information Maps'n=WORK._EGMAPFILTERS;
22 proc contents data=_egmle."AGRI_INFO_MAP"n () out=WORK._EGMAPCONTENTS; run;
ERROR: Libname _EGMLE is not assigned.

NOTE: Statements not processed because of errors noted above.
NOTE: The data set WORK._EGMAPCONTENTS has 0 observations and 0 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds

NOTE: The SAS System stopped processing this step because of errors.
WARNING: Output ''Information Maps'n' was not created. Make sure that the output object name, label, or path is spelled correctly.
Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify
that the NOPRINT option is not used.


23 proc sort data=WORK._EGMAPCONTENTS; by varnum; run;
ERROR: Variable VARNUM not found.

NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds

24
25 /* clear the libname when complete */
26 libname _egmle clear;
2 The SAS System 14:51 Tuesday, April 8, 2008

WARNING: Libname _EGMLE is not assigned.
27
28 /* restore the option */
29 options &_imapValidVarName;
WARNING: Only Base procedures and SAS/STAT procedures have been tested for use with VALIDVARNAME=ANY. Other use of this option is
considered experimental and may cause undetected errors.

30
31 QUIT; RUN;

Thanks & Regards,
Lokesh
2 REPLIES 2
Doc_Duke
Rhodochrosite | Level 12
Lokesh,

This is a problem for tech support. You may be able to find some ideas from support.sas.com by putting the following into the search box

+"enterprise guide" +""

like

+"enterprise guide" +"SAS MVA interface to the Java API"

Doc
ChrisHemedinger
Community Manager
EG uses the INFOMAPS engine to read Information Maps, and that engine relies on a Java runtime on your server.

You can check the basic configuration of the Java runtime with this code:

proc javainfo; run;

And like Doc suggests, you will probably need to contact tech support to help with the resolution.

Chris
It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.

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!

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