Thank you for commenting.
I could get the code that is running in production now under SAS9.
--
options DQLOCALE=(L1);
options DQSETUPLOC="/usr/local/SAS/qkb/ci/25";
length ADDRESS_TEXT $400 ;
length MATCH_CODE $400 ;
ADDRESS_TEXT = "335 Elan Village Ln #426, San Jose, CA 95134 USA";
---
For CI, it is 25 not 24. It is my mistake.
As you see, Locale L1 exists but there is no document.
MATCH_CODE = dqMatch(ADDRESS_TEXT,'Address (Full Global)',95,'L1');
... View more