1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-09 02:10:06 +00:00

fix: missing param in webout of SASjs Server and Viya

This commit is contained in:
Allan
2023-07-24 16:59:29 +01:00
parent 76a20838ec
commit 3bb83be0c5
8 changed files with 44 additions and 36 deletions

View File

@@ -94,7 +94,7 @@ data &outds;
if libref(lib) ne 0 then do;
msg=catx(' ','libref',lib,'is not assigned!');
%if &errds=0 %then %do;
putlog "%str(ERR)OR: " msg;
putlog 'ERR' +(-1) "OR: " msg;
%end;
output;
return;
@@ -102,7 +102,7 @@ data &outds;
if exist(cats(lib,'.',ds)) ne 1 then do;
msg=catx(' ','libds',lib,'.',ds,'does not exist!');
%if &errds=0 %then %do;
putlog "%str(ERR)OR: " msg;
putlog 'ERR' +(-1) "OR: " msg;
%end;
output;
return;
@@ -111,7 +111,7 @@ data &outds;
if is_fmt=0 then do;
msg=catx(' ','format',fmt,'on libds',lib,'.',ds,'.',var,'is not valid!');
%if &errds=0 %then %do;
putlog "%str(ERR)OR: " msg;
putlog 'ERR' +(-1) "OR: " msg;
%end;
output;
return;
@@ -123,7 +123,7 @@ data &outds;
if dsid=0 then do;
msg=catx(' ','libds',lib,'.',ds,' could not be opened!');
%if &errds=0 %then %do;
putlog "%str(ERR)OR: " msg;
putlog 'ERR' +(-1) "OR: " msg;
%end;
output;
return;
@@ -131,7 +131,7 @@ data &outds;
if varnum(dsid,var)<1 then do;
msg=catx(' ','Variable',lib,'.',ds,'.',var,' was not found!');
%if &errds=0 %then %do;
putlog "%str(ERR)OR: " msg;
putlog 'ERR' +(-1) "OR: " msg;
%end;
output;
end;

View File

@@ -69,7 +69,7 @@
rc2=filename(fref2,filepath2,'disk','recfm=n');
if fcopy(fref1,fref2) ne 0 then do;
msg=sysmsg();
putlog "%str(ERR)OR: Unable to copy " filepath " to " filepath2;
putlog 'ERR' +(-1) "OR: Unable to copy " filepath " to " filepath2;
putlog msg=;
end;
end;

View File

@@ -71,7 +71,7 @@
retain &tempcol;
&tempcol=prxparse('/^[_a-z]\w{0,7}\.[_a-z]\w{0,31}$/i');
if missing(&tempcol) then do;
putlog "%str(ERR)OR: Invalid expression for LIBDS";
putlog 'ERR' +(-1) "OR: Invalid expression for LIBDS";
stop;
end;
drop &tempcol;
@@ -85,7 +85,7 @@
retain &tempcol;
&tempcol=prxparse('/^[_a-z\$]\w{0,31}\.[0-9]*$/i');
if missing(&tempcol) then do;
putlog "%str(ERR)OR: Invalid expression for FORMAT";
putlog 'ERR' +(-1) "OR: Invalid expression for FORMAT";
stop;
end;
drop &tempcol;