The SASEHAVR engine might generate the following error:
ERROR:Image SASEHAVR found but not loadable.
This error indicates that a necessary DLL from the Haver vendor is missing. Confirm the SAS bitness with this macro variable:
%put &sysaddrbits;
If the value 32 is returned, the file dlxapi32.dll is missing. If the value 64 is returned, the file dlxapi64.dll is missing.
Once the correct dll is located or downloaded, the directory where the dll resides must be appended to your system's environment variable PATH, which can be displayed with the following code:
%let path = %bquote(%sysget(path));
%put &path;
If the path needs to be edited, here are instructions: How do I set or change the PATH system variable?
Once the PATH is correctly configured, use a LIBNAME statement like the following, where the directory used in the points to the repository of Haver data (usually provided by the vendor as .dat files).
LIBNAME TEST SASEHAVR "directory\subdirectory" <libname options>;