From 0e37bff1eec9ca10a35762f369973f28e8d3b7c4 Mon Sep 17 00:00:00 2001 From: 4gl <@> Date: Wed, 13 May 2026 09:57:33 +0100 Subject: [PATCH 1/2] fix: workaround for sas track CS0409737 --- viya/mv_webout.sas | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/viya/mv_webout.sas b/viya/mv_webout.sas index 22370c2..1bce696 100644 --- a/viya/mv_webout.sas +++ b/viya/mv_webout.sas @@ -70,6 +70,11 @@ %let _webin_file_count=%eval(&_webin_file_count+0); %let _webin_fileuri1=&_webin_fileuri; %let _webin_name1=&_webin_name; + %if &_EXECUTIONTASKS=true %then %do; + /* TODO - remove this once SAS Track CS0409737 is resolved */ + /* links: https://github.com/sasjs/adapter/issues/884 */ + %if %upcase(&_webin_name)=_SASJS_NOOP %then %let _webin_file_count=0; + %end; %end; /* if the sasjs_tables param is passed, we expect param based upload */ From 6c77556fdb80e4d29f48d4906ebdd8fe85c8de63 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 13 May 2026 08:57:58 +0000 Subject: [PATCH 2/2] chore: updating all.sas --- all.sas | 10 ++++++++++ viya/mv_createwebservice.sas | 5 +++++ 2 files changed, 15 insertions(+) diff --git a/all.sas b/all.sas index 413b3f4..577e1eb 100644 --- a/all.sas +++ b/all.sas @@ -26326,6 +26326,11 @@ data _null_; put ' %let _webin_file_count=%eval(&_webin_file_count+0); '; put ' %let _webin_fileuri1=&_webin_fileuri; '; put ' %let _webin_name1=&_webin_name; '; + put ' %if &_EXECUTIONTASKS=true %then %do; '; + put ' /* TODO - remove this once SAS Track CS0409737 is resolved */ '; + put ' /* links: https://github.com/sasjs/adapter/issues/884 */ '; + put ' %if %upcase(&_webin_name)=_SASJS_NOOP %then %let _webin_file_count=0; '; + put ' %end; '; put ' %end; '; put ' '; put ' /* if the sasjs_tables param is passed, we expect param based upload */ '; @@ -30447,6 +30452,11 @@ filename &fref1 clear; %let _webin_file_count=%eval(&_webin_file_count+0); %let _webin_fileuri1=&_webin_fileuri; %let _webin_name1=&_webin_name; + %if &_EXECUTIONTASKS=true %then %do; + /* TODO - remove this once SAS Track CS0409737 is resolved */ + /* links: https://github.com/sasjs/adapter/issues/884 */ + %if %upcase(&_webin_name)=_SASJS_NOOP %then %let _webin_file_count=0; + %end; %end; /* if the sasjs_tables param is passed, we expect param based upload */ diff --git a/viya/mv_createwebservice.sas b/viya/mv_createwebservice.sas index a978d16..2d8b738 100644 --- a/viya/mv_createwebservice.sas +++ b/viya/mv_createwebservice.sas @@ -609,6 +609,11 @@ data _null_; put ' %let _webin_file_count=%eval(&_webin_file_count+0); '; put ' %let _webin_fileuri1=&_webin_fileuri; '; put ' %let _webin_name1=&_webin_name; '; + put ' %if &_EXECUTIONTASKS=true %then %do; '; + put ' /* TODO - remove this once SAS Track CS0409737 is resolved */ '; + put ' /* links: https://github.com/sasjs/adapter/issues/884 */ '; + put ' %if %upcase(&_webin_name)=_SASJS_NOOP %then %let _webin_file_count=0; '; + put ' %end; '; put ' %end; '; put ' '; put ' /* if the sasjs_tables param is passed, we expect param based upload */ ';