Usage Note 51856: An invalid license for SAS® Visual Analytics prevents you from making a connection to SAS® Mobile BI
If your SAS Visual Analytics license is invalid or incorrectly applied, then you cannot successfully connect to SAS Mobile BI. To determine whether you are encountering this issue, submit a link that is similar to this one with your specific server information.
http://YourVAServer:YourVAport/SASVisualAnalyticsTransport/onebi/getServerConfig
If you see the following message, then there is a problem with your license.
"message: Product validation failure - unable to validate product license"
BISRVMID SAS Visual Analytics Services is the name of the product that is not validated. Following are some troubleshooting steps:
- Locate your SAS installation data file (SID) and check to make sure that BISRVMID SAS Visual Analytics Services is listed. If it is not listed, then stop and contact SAS Technical Support.
- Reapply the SID file to both SAS® Foundation and the SAS® Metadata Server by following the instructions in the applicable Software License Renewal Instructions document.
Note: To locate the correct documentation for your deployment, see the Install Center page. Click the link for your release of SAS, and then click the link for the installation documentation for your operating system. At the bottom of the page, see the documents under the Renew your software license section.
- After you apply the SID, restart the SAS® Web Application Server.
- Verify that the SID is applied to the SAS Foundation machine by running the following code in SAS Foundation or SAS® Enterprise Guide®:
PROC SETINIT; run;
- If the problem is still not resolved, then capture the product license information in metadata by editing and running the code on the Full Code tab in this SAS note. The output of the code does not list the product name (BISRVMID SAS Visual Analytics Services), but it does list the product number such as PRODNUM827. Compare the product number in your SID file with the product number from the code output. If the numbers do not match, contact SAS Technical Support. Include the output from the PROC SETINIT and the code on the Full Code tab in this SAS note. Also include a copy of your Transport Services log file.
Operating System and Release Information
SAS System | SAS Mobile BI | Apple Mobile Operating System | 6.22 | | 9.4 TS1M0 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
This code extracts the SID information that is stored in metadata.
Modify the code to provide the following information:
- metauser
- metapass
- metarepository
- metaport
- metaserver
- file
Note: This is the location on your machine where the output is saved. The default is set to C:\outsid.txt
.
options metauser="sasadm@saspw" metapass=" " metarepository="Foundation" metaport=8561 metaserver= ;
data _null_;
length uri $256
text $3277;
rc=1;
arc=0;
n=1;
file "C:\outsid.txt" mod;
do while(rc>0);
rc=metadata_getnasn("omsobj:Document?@Name='SAS Setinit Location'","Notes",n,uri);
arc=1;
if (rc>0) then arc=metadata_getattr(uri,"StoredText",text);
if (arc=0) then put text;
n=n+1;
end;
run;
Date Modified: | 2015-02-02 13:38:17 |
Date Created: | 2013-12-18 09:29:45 |