SUPPORT / SAMPLES & SAS NOTES
 

Support

Usage Note 18680: SAS® Money Laundering Detection Transaction_View posted date and secondary account name logic are both incorrect

DetailsHotfixAboutRate It

Within SAS Money Laundering Detection, when in the transaction_view the posted_date_key format is defined as DTMMDDYY10. This causes the wrong date to appear. The correct format should be MMDDYY10.

The transaction_view needs to reset the related_account_name field within the loop. Without resetting it, all subsequent related_account_name values are being set to a prior non -1 value if the secondary_account_key is -1.

Code segment:

/* Secondary_Account_Key */ if secondary_account_key ne -1 then do; set db_core.fsc_account_dim(%mnydpw keep=ACCOUNT_KEY ACCOUNT_NUMBER ACCOUNT_NAME rename=(ACCOUNT_KEY=SECONDARY_ACCOUNT_KEY ACCOUNT_NUMBER=SECONDARY_ACCOUNT_NUMBER ACCOUNT_NAME=SECONDARY_ACCOUNT_NAME)) key=SECONDARY_ACCOUNT_KEY / unique; if (_IORC_) ne 0 then do; secondary_account_number=""; _error_=0; _iorc_=0; end; end; else secondary_account_number=""; output;

needs to change to

/* Secondary_Account_Key */ if secondary_account_key ne -1 then do; set db_core.fsc_account_dim(%mnydpw keep=ACCOUNT_KEY ACCOUNT_NUMBER ACCOUNT_NAME rename=(ACCOUNT_KEY=SECONDARY_ACCOUNT_KEY ACCOUNT_NUMBER=SECONDARY_ACCOUNT_NUMBER ACCOUNT_NAME=SECONDARY_ACCOUNT_NAME)) key=SECONDARY_ACCOUNT_KEY / unique; if (_IORC_) ne 0 then do; secondary_account_number=""; _error_=0; _iorc_=0; end; end; else do; secondary_account_number=""; secondary_account_name = ""; end; output;

Select 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 SystemSAS Money Laundering DetectionMicrosoft Windows XP 64-bit Edition1.49.1 TS1M3 SP3
Microsoft Windows NT Workstation1.49.1 TS1M3 SP3
Microsoft Windows XP Professional1.49.1 TS1M3 SP3
Microsoft Windows Server 2003 Standard Edition1.49.1 TS1M3 SP3
Microsoft® Windows® for 64-Bit Itanium-based Systems1.49.1 TS1M3 SP3
Microsoft Windows Server 2003 Datacenter Edition1.49.1 TS1M3 SP3
Microsoft Windows Server 2003 Enterprise Edition1.49.1 TS1M3 SP3
Microsoft Windows 2000 Professional1.49.1 TS1M3 SP3
Microsoft Windows 2000 Server1.49.1 TS1M3 SP3
Microsoft Windows 2000 Advanced Server1.49.1 TS1M3 SP3
Microsoft Windows 2000 Datacenter Server1.49.1 TS1M3 SP3
* 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.