From 85e0b6a4a9fff1bf382e2d1a476332b53bdfedf0 Mon Sep 17 00:00:00 2001 From: munja Date: Wed, 9 Feb 2022 22:07:03 +0100 Subject: [PATCH] fix: upcasing vars in mp_assertscope --- base/mp_assertscope.sas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/mp_assertscope.sas b/base/mp_assertscope.sas index e1dd54c..f6477d1 100644 --- a/base/mp_assertscope.sas +++ b/base/mp_assertscope.sas @@ -98,7 +98,7 @@ create table _data_ as select name,offset,value from dictionary.macros - where scope="&scope" and name not in (%mf_getquotedstr(&ilist)) + where scope="&scope" and upcase(name) not in (%mf_getquotedstr(&ilist)) order by name,offset; %let ds=&syslast;