mirror of
https://github.com/sasjs/core.git
synced 2026-06-08 20:10:20 +00:00
@@ -26,6 +26,7 @@ jobs:
|
|||||||
git config user.email github-actions@github.com
|
git config user.email github-actions@github.com
|
||||||
python3 build.py
|
python3 build.py
|
||||||
git add all.sas
|
git add all.sas
|
||||||
|
git add viya/mv_createwebservice.sas
|
||||||
git commit -m "chore: updating all.sas" --allow-empty
|
git commit -m "chore: updating all.sas" --allow-empty
|
||||||
git push
|
git push
|
||||||
|
|
||||||
|
|||||||
@@ -25291,7 +25291,6 @@ options noquotelenmax;
|
|||||||
run;
|
run;
|
||||||
%end;
|
%end;
|
||||||
%if &SYS_PROCHTTP_STATUS_CODE=200 %then %do;
|
%if &SYS_PROCHTTP_STATUS_CODE=200 %then %do;
|
||||||
%*put &sysmacroname &newpath exists so grab the follow on link ;
|
|
||||||
data _null_;
|
data _null_;
|
||||||
set &libref1..links;
|
set &libref1..links;
|
||||||
if rel='createChild' then
|
if rel='createChild' then
|
||||||
@@ -26312,7 +26311,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; ';
|
||||||
@@ -26367,8 +26366,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 filesrvc "&&_webin_fileuri&i" lrecl=999999; ';
|
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 ' %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; ';
|
||||||
@@ -30429,7 +30432,7 @@ filename &fref1 clear;
|
|||||||
,showmeta=N,maxobs=MAX,workobs=0
|
,showmeta=N,maxobs=MAX,workobs=0
|
||||||
);
|
);
|
||||||
%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name
|
%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name
|
||||||
sasjs_tables SYS_JES_JOB_URI;
|
sasjs_tables SYS_JES_JOB_URI _EXECUTIONTASKS;
|
||||||
%if %index("&_debug",log) %then %let _debug=131;
|
%if %index("&_debug",log) %then %let _debug=131;
|
||||||
|
|
||||||
%local i tempds table;
|
%local i tempds table;
|
||||||
@@ -30484,8 +30487,12 @@ filename &fref1 clear;
|
|||||||
%end;
|
%end;
|
||||||
%else %do i=1 %to &_webin_file_count;
|
%else %do i=1 %to &_webin_file_count;
|
||||||
/* read in any files that are sent */
|
/* read in any files that are sent */
|
||||||
/* this part needs refactoring for wide files */
|
%if &_EXECUTIONTASKS=true %then %do;
|
||||||
filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999;
|
filename indata "%sysfunc(pathname(&&_webin_fileref&i))" lrecl=999999;
|
||||||
|
%end;
|
||||||
|
%else %do;
|
||||||
|
filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999;
|
||||||
|
%end;
|
||||||
data _null_;
|
data _null_;
|
||||||
infile indata termstr=crlf lrecl=32767;
|
infile indata termstr=crlf lrecl=32767;
|
||||||
input;
|
input;
|
||||||
|
|||||||
@@ -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 filesrvc "&&_webin_fileuri&i" lrecl=999999; ';
|
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 ' %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; ';
|
||||||
|
|||||||
+7
-3
@@ -55,7 +55,7 @@
|
|||||||
,showmeta=N,maxobs=MAX,workobs=0
|
,showmeta=N,maxobs=MAX,workobs=0
|
||||||
);
|
);
|
||||||
%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name
|
%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name
|
||||||
sasjs_tables SYS_JES_JOB_URI;
|
sasjs_tables SYS_JES_JOB_URI _EXECUTIONTASKS;
|
||||||
%if %index("&_debug",log) %then %let _debug=131;
|
%if %index("&_debug",log) %then %let _debug=131;
|
||||||
|
|
||||||
%local i tempds table;
|
%local i tempds table;
|
||||||
@@ -110,8 +110,12 @@
|
|||||||
%end;
|
%end;
|
||||||
%else %do i=1 %to &_webin_file_count;
|
%else %do i=1 %to &_webin_file_count;
|
||||||
/* read in any files that are sent */
|
/* read in any files that are sent */
|
||||||
/* this part needs refactoring for wide files */
|
%if &_EXECUTIONTASKS=true %then %do;
|
||||||
filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999;
|
filename indata "%sysfunc(pathname(&&_webin_fileref&i))" lrecl=999999;
|
||||||
|
%end;
|
||||||
|
%else %do;
|
||||||
|
filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999;
|
||||||
|
%end;
|
||||||
data _null_;
|
data _null_;
|
||||||
infile indata termstr=crlf lrecl=32767;
|
infile indata termstr=crlf lrecl=32767;
|
||||||
input;
|
input;
|
||||||
|
|||||||
Reference in New Issue
Block a user