PON_ATTRIBUTE_SCORES

PON_ATTRIBUTE_SCORES stores the scoring criteria for a particular attribute in either an auction item or a reusable attribute list. The master table is PON_AUCTION_ATTRIBUTES.

Details

  • Schema: FUSION

  • Object owner: PON

  • Object type: TABLE

  • Tablespace: APPS_TS_TX_DATA

Primary Key

Name Columns

PON_ATTRIBUTE_SCORES_PK

AUCTION_HEADER_ID, LINE_NUMBER, ATTRIBUTE_SEQUENCE_NUMBER, SEQUENCE_NUMBER, ATTRIBUTE_LIST_ID

Columns

Name Datatype Length Precision Not-null Comments
AUCTION_HEADER_ID NUMBER 18 Yes Auction number. PK to pon_auction_attributes
LINE_NUMBER NUMBER Yes Auction item number. PK to pon_auction_attributes
ATTRIBUTE_SEQUENCE_NUMBER NUMBER Yes Attribute Sequence Number. PK to pon_auction_attributes
TEXT_VALUE VARCHAR2 240 Acceptable bid value for text attribute type
NUMBER_FROM_RANGE NUMBER Beginning of range for number attribute type
NUMBER_TO_RANGE NUMBER End of range for number attribute type
DATE_FROM_RANGE DATE Beginning of range for date attribute types
DATE_TO_RANGE DATE End of range for date attribute type
SCORE NUMBER Raw score for this range or acceptable value
ATTRIBUTE_LIST_ID NUMBER 18 Yes FK to pon_auction_attributes if it is part of a resuable attribute list
SEQUENCE_NUMBER NUMBER Yes order of the scoring criteria, part of PK
DISP_SEQ_NUMBER NUMBER Sequence number used for display order.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
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.
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
PON_ATTRIBUTE_SCORES pon_auction_attributes AUCTION_HEADER_ID, LINE_NUMBER, ATTRIBUTE_SEQUENCE_NUMBER, ATTRIBUTE_LIST_ID

Indexes

Index Uniqueness Tablespace Columns
PON_ATTRIBUTE_SCORES_N1 Non Unique Default ATTRIBUTE_LIST_ID, ATTRIBUTE_SEQUENCE_NUMBER, SEQUENCE_NUMBER
PON_ATTRIBUTE_SCORES_U1 Unique Default AUCTION_HEADER_ID, LINE_NUMBER, ATTRIBUTE_SEQUENCE_NUMBER, SEQUENCE_NUMBER, ATTRIBUTE_LIST_ID