diff --git a/all.sas b/all.sas index e03b4c4c..92ffdf41 100644 --- a/all.sas +++ b/all.sas @@ -7082,6 +7082,7 @@ data _null_; when (' ') rec='0A'x; when (' ') rec='0D'x; when ('$' ) rec='$' ; + when (' ') rec='09'x; otherwise putlog "WARNING: missing value for " entity=; end; rc =fput(fileid, substr(rec,1,1)); @@ -7996,6 +7997,7 @@ data _null_; when (' ') rec='0A'x; when (' ') rec='0D'x; when ('$' ) rec='$' ; + when (' ') rec='09'x; otherwise putlog "%str(WARN)ING: missing value for " entity=; end; rc =fput(fileid, substr(rec,1,1)); @@ -8630,6 +8632,7 @@ run; when (' ') rec='0A'x; when (' ') rec='0D'x; when ('$' ) rec='$' ; + when (' ') rec='09'x; otherwise putlog "WARNING: missing value for " entity=; end; rc =fput(fileid, substr(rec,1,1)); diff --git a/meta/mm_getdocument.sas b/meta/mm_getdocument.sas index 52ab691e..c1b654c3 100644 --- a/meta/mm_getdocument.sas +++ b/meta/mm_getdocument.sas @@ -124,6 +124,7 @@ data _null_; when (' ') rec='0A'x; when (' ') rec='0D'x; when ('$' ) rec='$' ; + when (' ') rec='09'x; otherwise putlog "WARNING: missing value for " entity=; end; rc =fput(fileid, substr(rec,1,1)); diff --git a/meta/mm_getstpcode.sas b/meta/mm_getstpcode.sas index bb4720f7..662ec8f2 100644 --- a/meta/mm_getstpcode.sas +++ b/meta/mm_getstpcode.sas @@ -123,6 +123,7 @@ data _null_; when (' ') rec='0A'x; when (' ') rec='0D'x; when ('$' ) rec='$' ; + when (' ') rec='09'x; otherwise putlog "%str(WARN)ING: missing value for " entity=; end; rc =fput(fileid, substr(rec,1,1)); diff --git a/meta/mm_getwebappsrvprops.sas b/meta/mm_getwebappsrvprops.sas index bd94d540..514d91ba 100644 --- a/meta/mm_getwebappsrvprops.sas +++ b/meta/mm_getwebappsrvprops.sas @@ -99,6 +99,7 @@ run; when (' ') rec='0A'x; when (' ') rec='0D'x; when ('$' ) rec='$' ; + when (' ') rec='09'x; otherwise putlog "WARNING: missing value for " entity=; end; rc =fput(fileid, substr(rec,1,1));