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
SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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