Hi,
I am using SAS 9.3 on my Windows system through which I can connect to SAS 9.3/9.4 on the remote UNIX server.
For determing the SAS version of the PC SAS, I am using statement:-
version=symget("sysver");
textentry1.text=version;
But I want to determine the SAS version on UNIX server to which my PC SAS is connected to. Please suggest code.
@Reeza: I am using the below code snippet in my SCL file:
submit continue;
rsubmit;
%let sas_ver;
data _null_;
sas_ver= "&sysver";
run;
endrsubmit;
endsubmit;
textentry1.text=sas_ver;
But the value is not getting populated in the textentry. Please help.
The same, just rsubmit that code.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.