1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-11 06:24:35 +00:00

chore: automated commit

This commit is contained in:
Allan Bowe
2021-06-24 00:29:54 +03:00
parent ac0ddf38b0
commit a8d222a0f8
2 changed files with 2 additions and 2 deletions

View File

@@ -2226,7 +2226,7 @@ Usage:
%let infound=0;
%let outfound=0;
data _null_;
set sashelp.vextfl(where=(upcase(fileref)="&inref" or fileref="&outref"));
set sashelp.vextfl(where=(fileref="&inref" or fileref="&outref"));
if fileref="&inref" then call symputx('infound',1,'l');
if fileref="&outref" then call symputx('outfound',1,'l');
run;

View File

@@ -53,7 +53,7 @@
%let infound=0;
%let outfound=0;
data _null_;
set sashelp.vextfl(where=(upcase(fileref)="&inref" or fileref="&outref"));
set sashelp.vextfl(where=(fileref="&inref" or fileref="&outref"));
if fileref="&inref" then call symputx('infound',1,'l');
if fileref="&outref" then call symputx('outfound',1,'l');
run;