1
0
mirror of https://github.com/sasjs/core.git synced 2026-06-08 20:10:20 +00:00

chore: updating all.sas

This commit is contained in:
github-actions
2026-05-12 13:02:35 +00:00
parent 59f8303b19
commit 96d42b9f66
+6 -2
View File
@@ -594,7 +594,7 @@ data _null_;
put ' ,showmeta=N,maxobs=MAX,workobs=0 '; put ' ,showmeta=N,maxobs=MAX,workobs=0 ';
put '); '; put '); ';
put '%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name '; put '%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name ';
put ' sasjs_tables SYS_JES_JOB_URI; '; put ' sasjs_tables SYS_JES_JOB_URI _EXECUTIONTASKS; ';
put '%if %index("&_debug",log) %then %let _debug=131; '; put '%if %index("&_debug",log) %then %let _debug=131; ';
put ' '; put ' ';
put '%local i tempds table; '; put '%local i tempds table; ';
@@ -649,8 +649,12 @@ data _null_;
put ' %end; '; put ' %end; ';
put ' %else %do i=1 %to &_webin_file_count; '; put ' %else %do i=1 %to &_webin_file_count; ';
put ' /* read in any files that are sent */ '; put ' /* read in any files that are sent */ ';
put ' /* this part needs refactoring for wide files */ '; put ' %if &_EXECUTIONTASKS=true %then %do; ';
put ' filename indata "%sysfunc(pathname(&&_webin_fileref&i))" lrecl=999999; ';
put ' %end; ';
put ' %else %do; ';
put ' filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999; '; put ' filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999; ';
put ' %end; ';
put ' data _null_; '; put ' data _null_; ';
put ' infile indata termstr=crlf lrecl=32767; '; put ' infile indata termstr=crlf lrecl=32767; ';
put ' input; '; put ' input; ';