diff --git a/all.sas b/all.sas index a029bee..a684229 100644 --- a/all.sas +++ b/all.sas @@ -1935,7 +1935,7 @@ Usage: @author Allan Bowe **/ -%macro mp_csv2ds(inref=0,outds=0,baseds=0); +%macro mp_csv2ds(inref=0,outds=0,baseds=0,view=NO); %if &inref=0 %then %do; %put %str(ERR)OR: the INREF variable must be provided; %let syscc=4; @@ -1952,7 +1952,7 @@ Usage: %return; %end; %if %sysfunc(exist(&BASEDS)) ne 1 & %sysfunc(exist(&BASEDS,VIEW)) ne 1 %then %do; - %put %str(ERR)OR: the BASEDS dataset needs to be assigned, and to exist; + %put %str(ERR)OR: the BASEDS dataset (&baseds) needs to be assigned, and to exist; %let syscc=4; %return; %end; diff --git a/base/mp_csv2ds.sas b/base/mp_csv2ds.sas index bd79984..dd43c25 100644 --- a/base/mp_csv2ds.sas +++ b/base/mp_csv2ds.sas @@ -30,7 +30,7 @@ @author Allan Bowe **/ -%macro mp_csv2ds(inref=0,outds=0,baseds=0); +%macro mp_csv2ds(inref=0,outds=0,baseds=0,view=NO); %if &inref=0 %then %do; %put %str(ERR)OR: the INREF variable must be provided; %let syscc=4; @@ -47,7 +47,7 @@ %return; %end; %if %sysfunc(exist(&BASEDS)) ne 1 & %sysfunc(exist(&BASEDS,VIEW)) ne 1 %then %do; - %put %str(ERR)OR: the BASEDS dataset needs to be assigned, and to exist; + %put %str(ERR)OR: the BASEDS dataset (&baseds) needs to be assigned, and to exist; %let syscc=4; %return; %end;