Hello,
since few days ( many many days 😞 ), i try to create an exteranl file ( on a SAS server ) like this :
filename TAB_OUT '/_my_path_server_/.../_my_files_/_my_file_.txt' lrecl=21 ;
data CREATE ; set TAB_IN ;
sep = ';' ;
file TAB_OUT ;
put var1 3. sep $1.
var2 $16. sep $1. ;
First - Is this syntaxe looks like correct ?
Second - Why SAS, when i run this prog, returm to me this message : ERROR: Physical file does not exist, /_my_path_server_/.../_my_files_/_my_file_.txt.
Sure, i know it does't exist anymore, i want to create it !!!!
someone can "light my lantern", please ?