POZ_CONTACT_ATTRIBUTES

This is a main table that will store data pertaining to some properties of a particular contact. Currently, it stores the access level of a particular contact. At the UI level, the contact access will be restricted to either the Supplier level (default) or at the Supplier Site level. This is the table which records that selection. So there will be a single record for a particular contact. This table will store the data for approved contacts.

Details

  • Schema: FUSION

  • Object owner: POZ

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

POZ_CONTACT_ATTRIBUTES_PK

PER_PARTY_ID

Columns

Name Datatype Length Precision Not-null Comments
PER_PARTY_ID NUMBER 18 Yes Foreign key to HZ_PARTIES (PARTY_ID). This is the Person Party Id
ACCESS_LEVEL VARCHAR2 30 Yes This value indicates the kind of access level (Supplier or Supplier Site) the particular contact has. Valid values are 'SUPPLIER' or 'SUPPLIER_SITE'
OBJECT_VERSION_NUMBER NUMBER 9 Yes Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Foreign Keys

Table Foreign Table Foreign Key Column
POZ_CONTACT_ATTRIBUTES hz_parties PER_PARTY_ID
pos_user_access_values poz_contact_attributes PER_PARTY_ID

Indexes

Index Uniqueness Columns
POZ_CONTACT_ATTRIBUTES_PK Unique PER_PARTY_ID