Thnaks Russ and all the friends that contributed to my question. You were right, i checked carefully the code that is downloaded from the SAS Visual Text Analytics and i can score a new data set by filling in the macro variables. Actually the scored data set is saved in a cas library called sascas1 that is created by the code, although i set the library to casuser. This is why i could not find the scored data set and i initiated the post. So if someone else tries this action the scored data set can be found in the sascas1 cas library. /* specifies the CAS library to write the score output table. You must modify the value to provide the name of the library that will contain the output table that the score code produces. */ %let output_caslib_name = "casuser"; cas sascas1 host=&cas_server_hostname port=&cas_server_port; libname sascas1 cas sessref=sascas1 datalimit=all; Thanks!
... View more