FND_EDP_PROT_FIELDS_B
Stores the definitions of the fields which are to be protected by an external application.
Details
-
Schema: EXTERNAL_DATA_PROTECTION
-
Object owner: FND
-
Object type: TABLE
-
Tablespace: REFERENCE
Primary Key
Name | Columns |
---|---|
FND_EDP_PROT_FIELDS_B_PK |
PROT_FIELD_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
PROT_FIELD_ID | NUMBER | 18 | Yes | Internal GUID to uniquely identify data protection field configuration row. | |
MODULE_ID | VARCHAR2 | 32 | Yes | Seed Data Framework: indicates the module that owns the row. A module is an entry in Application Taxonomy such as a Logical Business Area. When the MODULE_ID column exists and the owner of the row is not specified, then the Seed Data Framework will not extract the row as seed data. | |
PROTECTION_KEY | VARCHAR2 | 128 | Yes | GUID - Unique protection key. This key will be exposed to the external application as the key for the field protection. Protection key will always contain two parts, Object and Attribute, separated by a dot(.). | |
TOKENIZATION_SCHEME | VARCHAR2 | 20 | Yes | Some attributes may require tokens to be generated for every word rather than having one token generated for the entire sentence. Valid Values: ALL - Tokenize entire value into one token WORD - Tokenize word by word | |
PROTECTION_COLUMN_NAME | VARCHAR2 | 32 | Name of the Column being protected. | ||
PROTECTION_STATE | VARCHAR2 | 20 | Yes | The type of protection configured by the external application on the field. Valid Values: NONE - No protection on the field. ENCRYPTED - The field will be encrypted by the external application. TOKENIZED - The field will be tokenized by the external application. | |
FIELD_SIZE | NUMBER | 9 | The number of characters left un-encrypted/tokenized by the external application. These characters are primarily left unprotected to allow for sorting. | ||
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
ENABLED_FLAG | VARCHAR2 | 1 | Yes | Whether this protection field is currently active/enabled for integration with the external application. Values: Y/N | |
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 | Yes | Who column: indicates the session login associated to the user who last updated the row. |
Foreign Keys
Table | Foreign Table | Foreign Key Column |
---|---|---|
fnd_edp_prot_fields_tl | fnd_edp_prot_fields_b | PROT_FIELD_ID |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
FND_EDP_PROT_FIELDS_B_U1 | Unique | FUSION_TS_TX_DATA | PROT_FIELD_ID |
FND_EDP_PROT_FIELDS_B_U2 | Unique | FUSION_TS_TX_DATA | PROTECTION_KEY |