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
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
SAS System | SAS Anti-Money Laundering Alert Generation Server | Microsoft Windows XP Professional | 2.1 | | | |
Microsoft Windows NT Workstation | 2.1 | | | |
Microsoft Windows 2000 Server | 2.1 | | | |
Microsoft Windows 2000 Datacenter Server | 2.1 | | | |
Microsoft Windows 2000 Advanced Server | 2.1 | | | |
Linux | 2.1 | | | |
Solaris | 2.1 | | | |
64-bit Enabled Solaris | 2.1 | | | |
Microsoft Windows 2000 Professional | 2.1 | | | |
64-bit Enabled AIX | 2.1 | | | |
AIX | 2.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.
Type: | Usage Note |
Priority: | high |
Date Modified: | 2007-05-28 00:20:40 |
Date Created: | 2007-03-02 14:31:47 |