Hi experts,
Using SAS Viya 3.5 and trying to load a SAS dataset created in encoding WHEBREW and copied as-is (via WinSCP) to the SAS Viya server SPRE compute machine. If I use this code below then the load works fine to CAS and I can see the Hebrew text correctly in Viya:
/* connect to CAS */
cas;
/* create a caslib pointing to the sas7bdat file location */
caslib myCaslib datasource=(srctype="path") path="/tmp/sas94/data";
/* this sample uploads using a temporary caslib pointing to the sas7bdat file location */
/* the charmultiplier=2 is for Hebrew */
proc casutil;
load casdata="score.sas7bdat" incaslib="myCaslib" outcaslib="casuser" casout="score"
promote
importoptions=(filetype="basesas" charmultiplier=2);
run;quit;
I would like to achieve the same by loading the dataset directly from the "Manage Data" UI in SAS Viya but that does not work. I get an error that the dataset cannot be transcoded. I cannot find a way to set the "charmultiplier=2" option in the UI when I define a new CASLIB of type "path". I also cannot find a way to set the "charmultiplier=2" in the CASLIB statement when I define it in code. Anyone has any idea about it?
Thanks
... View more