PON_SCORING_TEAMS

This table stores information about scoring teams that may be created optionally for a negotiation. A scoring team is a group of collaboration team members who are assigned the responsibility of evaluating various negotiation sections.

Details

  • Schema: FUSION

  • Object owner: PON

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

PON_SCORING_TEAMS_PK

AUCTION_HEADER_ID, TEAM_ID

Columns

Name Datatype Length Precision Not-null Comments
AUCTION_HEADER_ID NUMBER 18 Yes Unique identifier of a negotiation.
TEAM_ID NUMBER 18 Yes Unique Id of a Scoring Team within a negotiation.
TEAM_NAME VARCHAR2 80 Name of the Scoring team.
SCORING_DEADLINE DATE Deadline for the closing of the team scoring.
INSTRUCTION_TEXT VARCHAR2 4000 Scoring instructions for team members.
DISP_SEQ_NUMBER NUMBER This column is used to order the teams. The value will be 10, 20, 30...
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.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to 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.

Foreign Keys

Table Foreign Table Foreign Key Column
PON_SCORING_TEAMS pon_auction_headers_all AUCTION_HEADER_ID
pon_scoring_team_members pon_scoring_teams AUCTION_HEADER_ID, TEAM_ID

Indexes

Index Uniqueness Tablespace Columns
PON_SCORING_TEAMS_U1 Unique Default AUCTION_HEADER_ID, TEAM_ID