1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-03 23:50:06 +00:00

fix: use options nobomfile for sasjs server mp_abort, also doc update in mf_existvarlist

This commit is contained in:
Allan Bowe
2022-06-09 22:16:34 +00:00
parent 055e8d2f13
commit 24c50cde56
3 changed files with 4 additions and 8 deletions

View File

@@ -6,9 +6,6 @@
%put %mf_existVarList(sashelp.class, age sex name dummyvar);
<h4> SAS Macros </h4>
@li mf_abort.sas
@param libds 2 part dataset or view reference
@param varlist space separated variable names

View File

@@ -159,7 +159,7 @@
%if %symexist(SYS_JES_JOB_URI) %then %do;
/* setup webout for Viya */
OPTIONS NOBOMFILE;
options nobomfile;
%if "X&SYS_JES_JOB_URI.X"="XX" %then %do;
filename _webout temp lrecl=999999 mod;
%end;
@@ -169,6 +169,7 @@
%end;
%end;
%else %if %sysfunc(filename(fref,&sasjs_stpsrv_header_loc))=0 %then %do;
options nobomfile;
/* set up http header for SASjs Server */
%let fid=%sysfunc(fopen(&fref,A));
%if &fid=0 %then %do;