diff --git a/mc_all.sas b/mc_all.sas index f90fa06..c632dda 100644 --- a/mc_all.sas +++ b/mc_all.sas @@ -6904,6 +6904,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end; @@ -7818,6 +7819,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "%str(WARN)ING: missing value for " entity=; end; @@ -8385,6 +8387,7 @@ run; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end; diff --git a/meta/mm_getdocument.sas b/meta/mm_getdocument.sas index 52ab691..43d3f6d 100644 --- a/meta/mm_getdocument.sas +++ b/meta/mm_getdocument.sas @@ -123,6 +123,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end; diff --git a/meta/mm_getstpcode.sas b/meta/mm_getstpcode.sas index bb4720f..8305276 100644 --- a/meta/mm_getstpcode.sas +++ b/meta/mm_getstpcode.sas @@ -122,6 +122,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "%str(WARN)ING: missing value for " entity=; end; diff --git a/meta/mm_getwebappsrvprops.sas b/meta/mm_getwebappsrvprops.sas index 6e69d1f..d03c593 100644 --- a/meta/mm_getwebappsrvprops.sas +++ b/meta/mm_getwebappsrvprops.sas @@ -97,6 +97,7 @@ run; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end;