SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 66227: The SAS® 9.4M6 (TS1M6) EMAIL access method removes trailing blanks from attachments

DetailsHotfixAboutRate It

In SAS 9.4M6, a change was made to remove trailing blanks in SAS email attachments. This behavior causes problems with some attachments when you read in a text file. Some attachments need these trailing blanks that are now being trimmed.

To revert to the behavior before the change that removed the trailing blanks, you must install the hot fix if you are running SAS 9.4M6 and run the following code in order to set the registry option that reverts the behavior. This code updates sasuser, which is not allocated in batch. It also updates WORK, which goes away when the job completes. The following code needs to be added to your job before your EMAIL code to revert the behavior, so makes sure it is in the code before the code that needs to be reverted:

filename r temp;
data _NULL_;
   file r;
   put '[core\email]';
   put '"PRESERVELRECL"=uint:1';
run;
proc registry import=r;
run;

The registry uses IBM-037 encoding. If IBM-1047 is used, you need to manually change the hexadecimal value for brackets in the above code. When turning hexadecimal on, you need to change x'BA' to x'AD' and x'BB' to x'BD' in for the code to run successfully. 

Click the Hot Fix tab in this note to access the hot fix for this issue.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemBase SASz/OS9.4_M69.4 TS1M6
z/OS 64-bit9.4_M69.4 TS1M6
Microsoft® Windows® for x649.4_M69.4 TS1M6
Microsoft Windows 8 Enterprise 32-bit9.4_M69.4 TS1M6
Microsoft Windows 8 Enterprise x649.4_M69.4 TS1M6
Microsoft Windows 8 Pro 32-bit9.4_M69.4 TS1M6
Microsoft Windows 8 Pro x649.4_M69.4 TS1M6
Microsoft Windows 8.1 Enterprise 32-bit9.4_M69.4 TS1M6
Microsoft Windows 8.1 Enterprise x649.4_M69.4 TS1M6
Microsoft Windows 8.1 Pro 32-bit9.4_M69.4 TS1M6
Microsoft Windows 8.1 Pro x649.4_M69.4 TS1M6
Microsoft Windows 109.4_M69.4 TS1M6
Microsoft Windows Server 2012 Datacenter9.4_M69.4 TS1M6
Microsoft Windows Server 2012 R2 Datacenter9.4_M69.4 TS1M6
Microsoft Windows Server 2012 R2 Std9.4_M69.4 TS1M6
Microsoft Windows Server 2012 Std9.4_M69.4 TS1M6
Microsoft Windows Server 20169.4_M69.4 TS1M6
Microsoft Windows Server 20199.4_M69.4 TS1M6
Windows 7 Enterprise 32 bit9.4_M69.4 TS1M6
Windows 7 Enterprise x649.4_M69.4 TS1M6
Windows 7 Home Premium 32 bit9.4_M69.4 TS1M6
Windows 7 Home Premium x649.4_M69.4 TS1M6
Windows 7 Professional 32 bit9.4_M69.4 TS1M6
Windows 7 Professional x649.4_M69.4 TS1M6
Windows 7 Ultimate 32 bit9.4_M69.4 TS1M6
Windows 7 Ultimate x649.4_M69.4 TS1M6
64-bit Enabled AIX9.4_M69.4 TS1M6
64-bit Enabled Solaris9.4_M69.4 TS1M6
HP-UX IPF9.4_M69.4 TS1M6
Linux for x649.4_M69.4 TS1M6
Solaris for x649.4_M69.4 TS1M6
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.