SUPPORT / SAMPLES & SAS NOTES
 

Support

Usage Note 19667: The Scenario Administrator does not allow SAS employees to use an employee SID for both SAS® Anti-Money Laundering and SAS® Money Laundering Detection

DetailsHotfixAboutRate It

The Scenario Administrator does not allow SAS employees to use an employee SID (SAS Installation Data) for both SAS® Anti-Money Laundering and SAS® Money Laundering Detection. The MAIN.FRAME source code includes the following check for DETECTION versus AML, which controls when to display the Initial Routing button. The Initial Routing button only applies to SAS Anti-Money Laundering.

       /* Add check for Detection. ...*/ 
   submit continue; 
      options nosource; 
      %let product=%sysfunc(sysprod(prodnum176)); 
   endsubmit; 
 
   product=symgetn('product'); 
   if product=0 then 
     rc = setnitemc( envlist('T'), 'DETECTION', 'PRODUCTUSAGE'); else 
     rc = setnitemc( envlist('T'), 'AML', 'PRODUCTUSAGE'); 
For both SAS Money Laundering Detection and SAS Anti-Money Laundering, employee setinits cannot use the Initial Route button. To do so requires two SIDs and setinits, which is very cumbersome. The %SMSOLUTION_CHECK macro needs to be incorporated into the code because it enables the SAS Money Laundering Detection setinit to run and display the Initial Routing button.

   submit continue; 
      options nosource; 
      %fsmsolution_check; 
   endsubmit; 
 
   FSMSOLUTION=symget('FSMSOLUTION'); 
   if FSMSOLUTION="DETECTION" then 
      rc = setnitemc( envlist('T'), 'DETECTION', 'PRODUCTUSAGE'); else 
      rc = setnitemc( envlist('T'), 'AML', 'PRODUCTUSAGE'); 

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 Anti-Money Laundering Alert Generation ServerMicrosoft Windows XP Professional2.1
Microsoft Windows NT Workstation2.1
Microsoft Windows 2000 Server2.1
Microsoft Windows 2000 Datacenter Server2.1
Microsoft Windows 2000 Advanced Server2.1
Linux2.1
Solaris2.1
64-bit Enabled Solaris2.1
Microsoft Windows 2000 Professional2.1
64-bit Enabled AIX2.1
AIX2.1
* 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.