Hi
how can I create a text file in SAs with the text "The files has been uploaded succesfully" into a folder?
ods listing file="myfolder\textfile.txt"; data _null_; file print; text="The files has been uploaded succesfully"; put text; run; ods listing close;
Just use a PUT statement.
data _null_; file 'my_status_file.txt'; put "The files have been uploaded successfully"; run;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.