ARM_ATTRIBUTE_VALUES

This table stores the relationship between an object and the attributes that are assigned to it including the value that the user assigned to the attribute.

Details

Object type: TABLE

Primary Key

Name Columns

ARM_ATTRIBUTE_VALUES_PK

ATTRIBUTE_VALUE_ID

Columns

Name Data Type Length Precision Scale Null Allowed Comments

ATTRIBUTE_VALUE_ID

NUMBER

 

18

0

No

Unique identifier

ATTRIBUTE_ID

NUMBER

 

18

0

No

Foreign Key to ARM_ATTRIBUTES

OBJECT_ID

NUMBER

 

18

0

No

The ID of the object this attribute value is associated with

ORDER_SEQ

NUMBER

 

9

0

Yes

The order of the attribute with respect to the other attributes applied to the same object.

REQUIRED

VARCHAR2

1

   

Yes

Flag to indicate if the attribute value is required or not. Possible values are Y/N.

UPDATABLE_BY

VARCHAR2

1

   

Yes

Flag to indicate who can update the attribute value. P=Preparer, R= Reviewer, B= Both Preparer and Reviewer, N=None. If null, it means None.

VALUE_TEXT

VARCHAR2

4000

   

Yes

Only used if the type of attribute is TEXT or BOOLEAN

VALUE_NUMBER

NUMBER

     

Yes

Only used if the type of attribute is NUMBER

VALUE_DATE

DATE

     

Yes

Only used if the type of attribute is DATE

VALUE_LIST_CHOICE_ID

NUMBER

 

18

0

Yes

Only used if the type of attribute is LIST

HISTORY_ATTRIBUTE_TYPE

VARCHAR2

3

   

Yes

The attribute type, used by history to determine how to handle changes

OBJECT_VERSION_NUMBER

NUMBER

     

No

Used to implement optimistic locking. This number is incremented every time 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.

LAST_UPDATE_LOGIN

NUMBER

     

Yes

Who column. Stores the login/session ID of the user who last updated this row.

LAST_UPDATE_DATE

DATE

     

No

Who column. Stores the date when this row was last updated.

LAST_UPDATED_BY

VARCHAR2

255

   

No

Who column. Stores the ID of the user who last updated this row.

CREATION_DATE

DATE

     

No

Who column. Stores the date when this row was created in the database.

CREATED_BY

VARCHAR2

255

   

No

Who column. Stores the ID of the user who created this row.

FDMEE_UDX_NAME

VARCHAR2

5

   

Yes

Name of attribute in FDMEE

COPY_TO_PROFILE

VARCHAR2

1

   

Yes

Whether the attribute should be copied to the profile on submission

PRIOR_ATTRIBUTE_VALUE_ID

NUMBER

 

18

0

Yes

Prior attribute value ID, for copied-forward transactions

Indexes

Index Uniqueness Columns

ARM_ATTRIBUTE_VALUES_N1

NONUNIQUE

OBJECT_ID

ARM_ATTRIBUTE_VALUES_N2

NONUNIQUE

ATTRIBUTE_ID, HISTORY_ATTRIBUTE_TYPE

ARM_ATTRIBUTE_VALUES_PK

UNIQUE

ATTRIBUTE_VALUE_ID

ARM_ATTRIBUTE_VALUES_U1

UNIQUE

ATTRIBUTE_ID, OBJECT_ID

ARM_ATTRIBUTE_VALUES_U2

UNIQUE

OBJECT_ID, ATTRIBUTE_ID