mirror of
https://github.com/sasjs/core.git
synced 2026-01-03 15:40:05 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35a6dede6f | ||
|
|
039ec397dd |
18
all.sas
18
all.sas
@@ -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,13 +20432,15 @@ options &optval;
|
||||
%let ds1=%mf_getuniquename();
|
||||
data &ds1;
|
||||
length fileref $8 name $32 filename $256 var $300;
|
||||
webcount=countw("&inputfiles");
|
||||
do i=1 to webcount;
|
||||
var=scan("&inputfiles",i,' ');
|
||||
fileref=scan(var,1,':');
|
||||
name=scan(var,2,':');
|
||||
filename=cats(name,'.csv');
|
||||
output;
|
||||
if "&inputfiles" ne "0" then do;
|
||||
webcount=countw("&inputfiles");
|
||||
do i=1 to webcount;
|
||||
var=scan("&inputfiles",i,' ');
|
||||
fileref=scan(var,1,':');
|
||||
name=scan(var,2,':');
|
||||
filename=cats(name,'.csv');
|
||||
output;
|
||||
end;
|
||||
end;
|
||||
run;
|
||||
|
||||
|
||||
@@ -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,13 +82,15 @@
|
||||
%let ds1=%mf_getuniquename();
|
||||
data &ds1;
|
||||
length fileref $8 name $32 filename $256 var $300;
|
||||
webcount=countw("&inputfiles");
|
||||
do i=1 to webcount;
|
||||
var=scan("&inputfiles",i,' ');
|
||||
fileref=scan(var,1,':');
|
||||
name=scan(var,2,':');
|
||||
filename=cats(name,'.csv');
|
||||
output;
|
||||
if "&inputfiles" ne "0" then do;
|
||||
webcount=countw("&inputfiles");
|
||||
do i=1 to webcount;
|
||||
var=scan("&inputfiles",i,' ');
|
||||
fileref=scan(var,1,':');
|
||||
name=scan(var,2,':');
|
||||
filename=cats(name,'.csv');
|
||||
output;
|
||||
end;
|
||||
end;
|
||||
run;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user