/* for models that create a readable score file */
save the export model output to a txt file accesible from sas studio.
then work with %include.
FILENAME REFFILE FILESRVC FOLDERPATH='/Projects/SAS Viya training VWFS/' FILENAME='_2B3_aux lin_reg_sales_res.txt';
data casuser.rema_scored;
set casuser.rema;
%include reffile;
run;