Online File
Rick Aster: Professional SAS Programming Secrets: Contents
* Professional SAS Programming Secrets Program 16d Localized text items *; %* Select locale and language *; %LET LOCALE = %SYSFUNC(getpxlocale()); %LET LANGUAGE = %SYSFUNC(getpxlanguage()); * Localize all text items. Create lookup table and macro variables. *; data work.localtextitem (keep=item text index=(item)); merge app.textitem (where=(loc is missing)) app.textitem (where=(loc = "&LANGUAGE.")) app.textitem (where=(loc = "&LOCALE.")); by item; call symputx('LABEL_' || item, text); run;