5.4.1 Components of Security Attribute

After the data is made available in the KDD_REVIEW_OWNER table then the user must be mapped to the following parameters.

Jurisdiction

Mapping of one or more jurisdictions to a user or organization, gives the privilege of accessing Currency Transaction Reporting records that belong to the mapped jurisdiction. This is done by executing the following query in the atomic schema:

INSERT INTO KDD_REVIEW_OWNER_JRSDCN(OWNER_SEQ_ID,JRSDCN_CD) VALUES(10153,'AMEA');
COMMIT;

Business Domain

Mapping of one or more business domains to a user or organization gives the user privileges to access CTR records that belong to the mapped business domains. This is done when an entry is made in the KDD_REVIEW_OWNER table (See Mapping Users To Access Control Metadata, on page 41). In order to modify the business domain of any user execute the following query in the atomic schema:

UPDATE KDD_REVIEW_OWNER SET BUS_DMN_ST ='abc' WHERE OWNER_ID = <USER_ID>

where a,b, c are valid business domains and USER_ID is the ID (as in KDD_REVIEW_OWNER table OWNER_ID column) of the user to which domain mapping is to be done.