Hi i am trying to access the complete datasets, including the header variables, from outside of clinplus and the log is giving me the following errors. Can anyone tell me why this error is occurring? do i need to get any more licesences or something!
1 %let serverIP=<our local address>;
2 %let serverPort=5025;
3 %let sapw=user;
4
5
6
7 %let studyroot = 'Study folder that my data is under';
9 libname cpglobal server=serverIp.&serverPort sapw=&sapw;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
10
11 libname psys "&studyRoot" server=serverIp.&serverPort sapw=&sapw access=readonly;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
12 libname pdata "&studyRoot\data" server=serverIp.&serverPort sapw=&sapw access=readonly;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
13 libname pviews "&studyRoot\views" server=serverIp.&serverPort sapw=&sapw access=readonly;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
14 libname pcovers "&studyRoot\cover" server=serverIp.&serverPort sapw=&sapw access
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
thanks
1 %let serverIP=<our local address>;
2 %let serverPort=5025;
3 %let sapw=user;
4
5
6
7 %let studyroot = 'Study folder that my data is under';
9 libname cpglobal server=serverIp.&serverPort sapw=&sapw;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
10
11 libname psys "&studyRoot" server=serverIp.&serverPort sapw=&sapw access=readonly;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
12 libname pdata "&studyRoot\data" server=serverIp.&serverPort sapw=&sapw access=readonly;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
13 libname pviews "&studyRoot\views" server=serverIp.&serverPort sapw=&sapw access=readonly;
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
14 libname pcovers "&studyRoot\cover" server=serverIp.&serverPort sapw=&sapw access
ERROR: The product with which the engine REMOTE is associated is either not licensed for your system or the product license has expired. Please contact your SAS installation representative.
ERROR: Error in the LIBNAME statement.
thanks
Comment