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

Compare commits

..

2 Commits

Author SHA1 Message Date
Allan Bowe
35a6dede6f fix: enabling ms_testservice() without inputs 2022-05-02 13:56:22 +00:00
Allan Bowe
039ec397dd chore: local scoping vars in mp_testservice 2022-04-30 19:16:25 +00:00
2 changed files with 20 additions and 16 deletions

View File

@@ -20409,7 +20409,7 @@ options &optval;
outref=0,
outlogds=_null_
)/*/STORE SOURCE*/;
%local dbg fref1 chopout1 chopout2;
%local dbg i var ds1 fref1 chopout1 chopout2;
%if &mdebug=1 %then %do;
%put &sysmacroname entry vars:;
%put _local_;
@@ -20432,6 +20432,7 @@ options &optval;
%let ds1=%mf_getuniquename();
data &ds1;
length fileref $8 name $32 filename $256 var $300;
if "&inputfiles" ne "0" then do;
webcount=countw("&inputfiles");
do i=1 to webcount;
var=scan("&inputfiles",i,' ');
@@ -20440,6 +20441,7 @@ data &ds1;
filename=cats(name,'.csv');
output;
end;
end;
run;

View File

@@ -59,7 +59,7 @@
outref=0,
outlogds=_null_
)/*/STORE SOURCE*/;
%local dbg fref1 chopout1 chopout2;
%local dbg i var ds1 fref1 chopout1 chopout2;
%if &mdebug=1 %then %do;
%put &sysmacroname entry vars:;
%put _local_;
@@ -82,6 +82,7 @@
%let ds1=%mf_getuniquename();
data &ds1;
length fileref $8 name $32 filename $256 var $300;
if "&inputfiles" ne "0" then do;
webcount=countw("&inputfiles");
do i=1 to webcount;
var=scan("&inputfiles",i,' ');
@@ -90,6 +91,7 @@ data &ds1;
filename=cats(name,'.csv');
output;
end;
end;
run;