6.17.1 Configuring Contact Information

To configure contact information relative to the reporting institution, you must update the KDD_ORG_CONTACT_INFO table.

Table 6-8 KDD_ORG_CONTACT_INFO Table Attributes

Column Name Description
ORG_INTRL_ID Identifier for a specific organization that is unique across the enterprise.
CONTACT_NAME Name of the contact.
CONTACT_PHONE Phone number for the contact.
CONTACT_PHONE_EXTN Phone Extension for the contact.

To insert a record in the KDD_ORG_CONTACT_INFO table, execute the following query in the Atomic schema:

INSERT INTO KDD_ORG_CONTACT_INFO (ORG_INTRL_ID, CONTACT_NAME,
CONTACT_PHONE, CONTACT_PHONE_EXTN)
VALUES ('ABC BANK',
'NAME', 1234567890,
 
98765);
COMMIT;