SAS IT Resource Management
data requires access to SAS IT Resource Management formats. If the
data was originally created from an adapter based on MXG, it requires
the MXG formats. The source data and the required formats must be
accessible to the SAS Visual Analytics environment.
If the SAS IT Resource
Management and SAS Visual Analytics environments are on different
machines (including different operating systems), move the data and
the formats from one environment to the other. You can do this by
creating a transport file.
If you need to move
the SAS IT Resource Management formats, create a transport file from
the catalog called SASHELP.ITMS_FORMATS.
If you need to move
the MXG formats, create a transport file from the catalog called LIBRARY.FORMATS.
-
Use PROC CPORT to
create the transport file that resides in the SAS IT Resource Management
environment.
-
Use PROC CIMPORT to
import that data to the SAS Visual Analytics environment.
To use the SAS IT Resource
Management formats catalog, navigate to the sasv9_usermods.cfg
file
for the SAS Application Server. This file can be found on the SAS
Application Server at the following locations:
Windows Specifics: <config-dir>\Lev1\<application-server-context>
UNIX Specifics: <config-dir>/Lev1/<application-server-context>
z/OS Specifics: <config-dir>/Lev1/<application-server-context>
Then, update the sasv9_usermods.cfg
file using these statements:
-set FMTLIB "SASEnvironment/SASFormats/itmsformats"
-insert fmtsearch (FMTLIB.itms_formats)
Note: For information about the
INSERT option, see SAS 9.4 System Options: Reference.
To access data that
was sourced from MXG adapters such as SMF, you need MXG formats. Add
the following statement:
-set MXGFMT '<formatlib>'
where <formatlib>
is the path to the MXG format library that you created and to which
you imported the SAS IT Resource Management and possibly the MXG formats.
(This library is sometimes referred to as MXG.MXG.FORMATS.)
Note: The MXGSRC configuration
setting that is usually seen in SAS IT Resource Management configuration
files is not needed in this case.
Add the following macro
call to
appserver_autoexec_usermods.sas
(located
in the same folder) on the SAS Visual Analytics server:
%RMMXGINI;
Note: The RMMXGINI.sas macro code,
along with code for the five SAS IT Resource Management macros that
work with SAS Visual Analytics, should be added to the
SASEnvironment/sasmacro
location.
For more information
about these macros, see SAS Visual Analytics Macros.