SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 58750: All relationships associated with a party are deleted after you run the Integrated Event Management (IEM) process in SAS® Anti-Money Laundering

DetailsHotfixAboutRate It

The Integrated Event Management (IEM) process might incorrectly delete all relationships associated with a party. Instead of deleting only the specific relationship associated with a party, the %fcf_iem_close_dimension_rels macro might incorrectly delete all the corresponding relationship entries from the PARTY_X_PARTY table in SAS® Enterprise Case Management.

To work around the problem, replace the code section shown below:

proc sql; delete from ecm_db.PARTY_X_PARTY where PARTY_X_PARTY.PARTY_RK IN ( select PARTY_X_PARTY.PARTY_RK from work.all_pty_x_pty as all_pty_x_pty inner join ecm_db.PARTY_X_PARTY as PARTY_X_PARTY on ( all_pty_x_pty.PARTY_RK = PARTY_X_PARTY.PARTY_RK and all_pty_x_pty.MEMBER_PARTY_RK = PARTY_X_PARTY.MEMBER_PARTY_RK ) ); quit;

Replace the preceding section with the corrected section shown below:

proc sql; delete from ecm_db.PARTY_X_PARTY as ecm where exists ( select 1 from work.all_pty_x_pty as iem where iem.PARTY_RK = ecm.PARTY_RK and iem.MEMBER_PARTY_RK = ecm.MEMBER_PARTY_RK and iem.MEMBER_TYPE_CD = ecm.MEMBER_TYPE_CD ) ; quit;

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 SystemSAS Anti-Money LaunderingSolaris for x646.19.4 TS1M0
Linux for x646.19.4 TS1M0
Microsoft Windows 8.1 Enterprise 32-bit6.19.4 TS1M0
Microsoft Windows 8 Pro x646.19.4 TS1M0
Microsoft Windows 8 Enterprise x646.19.4 TS1M0
HP-UX IPF6.19.4 TS1M0
64-bit Enabled Solaris6.19.4 TS1M0
64-bit Enabled AIX6.19.4 TS1M0
Windows 7 Professional x646.19.4 TS1M0
Windows 7 Enterprise x646.19.4 TS1M0
Microsoft Windows Server 2012 Std6.19.4 TS1M0
Microsoft Windows Server 2012 R2 Std6.19.4 TS1M0
Microsoft Windows Server 2012 R2 Datacenter6.19.4 TS1M0
Microsoft Windows Server 2012 Datacenter6.19.4 TS1M0
Microsoft Windows Server 2008 for x646.19.4 TS1M0
Microsoft Windows Server 2008 R26.19.4 TS1M0
Microsoft Windows 106.19.4 TS1M0
Microsoft Windows 8.1 Pro x646.19.4 TS1M0
Microsoft Windows 8.1 Pro 32-bit6.19.4 TS1M0
Microsoft Windows 8.1 Enterprise x646.19.4 TS1M0
Microsoft® Windows® for x646.19.4 TS1M0
* 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.