I'm using the score export node in EM and it's truncating a long variable from 200 characters to 32, as per the system default. Where is the setting in EM to change this? I've searched online and clicked on about everything in the program and short of editing the output code to force 200 characters in the dummy variable the score creates, I'm not sure what to do.
Hoping there's a setting I can change because otherwise I have a long few days of manual coding ahead of me.
snippet of code that's making me angry in the SAS EM Score Output code:
else do; length _dm32 $ 32; drop _dm32 ; %DMNORMCP( combo , _dm32 )
if _dm32 = '36415_NATIONAL GOVERNMENT SERVIC' then do; _6_436 = 1; end;
that variable should be '36415_NATIONAL GOVERNMENT SERVICES, INC.'
Thanks.
... View more