Search Results pon_scoring_teams
Overview
PON_SCORING_TEAMS is a table in the PON (Sourcing) module of Oracle E-Business Suite, residing in the PON schema. It 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 attribute groups. The table is valid in both Oracle EBS 12.1.1 and 12.2.2 and is central to the structured evaluation of supplier responses in auctions and other sourcing negotiations.
From a Data Vault modeling perspective, the heuristic classification of this table is hub-leaning. This suggests that PON_SCORING_TEAMS functions primarily as a hub entity, representing the scoring team as a distinct business concept, keyed by its own identifier and linked outward to the negotiation and to its member and section detail tables. Analysts designing a dimensional or Data Vault model from the EBS schema may treat TEAM_ID as the hub key, with AUCTION_HEADER_ID acting as a foreign reference to the negotiation hub.
Key Information Stored
The table contains 11 documented columns. The most significant include:
- TEAM_ID — The surrogate primary key, enforced by PON_SCORING_TEAMS_PK. It uniquely identifies each scoring team and is also a business-key candidate via unique index PON_SCORING_TEAMS_U1.
- AUCTION_HEADER_ID — Foreign key to PON_AUCTION_HEADERS_ALL, identifying the negotiation to which the scoring team belongs. Together with TEAM_ID it forms unique index PON_SCORING_TEAMS_U2.
- TEAM_NAME — The descriptive name assigned to the scoring team.
- PRICE_VISIBLE_FLAG — Indicates whether pricing information is visible to the scoring team during evaluation.
- ORIG_TEAM_ID — Self-referencing foreign key to PON_SCORING_TEAMS, supporting copy or version relationships between teams.
- INSTRUCTION_TEXT — Free-form instructions provided to the scoring team regarding evaluation duties.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns recording who created and last modified the record and when.
The surrogate primary key (TEAM_ID) should be distinguished from the composite business-key candidate (AUCTION_HEADER_ID, TEAM_ID), which conveys the negotiation context of each team.
Common Use Cases and Queries
Typical usage involves identifying the scoring teams configured for a given negotiation, determining which teams can see pricing, and tracing team membership and evaluated attribute sections.
- List all scoring teams for an auction:
SELECT team_id, team_name, price_visible_flag FROM pon_scoring_teams WHERE auction_header_id = :auction_header_id; - Retrieve evaluation instructions and audit ownership:
SELECT team_name, instruction_text, created_by, creation_date FROM pon_scoring_teams WHERE team_id = :team_id; - Trace team members and section assignments by joining to PON_SCORING_TEAM_MEMBERS and PON_SCORING_TEAM_SECTIONS on TEAM_ID.
- Reporting on scoring team participation across negotiations, joining to PON_AUCTION_HEADERS_ALL for negotiation context.
Related Objects
The following objects are most significant in relation to PON_SCORING_TEAMS, based on documented foreign key relationships:
- PON_AUCTION_HEADERS_ALL — Referenced by PON_SCORING_TEAMS.AUCTION_HEADER_ID; provides the parent negotiation.
- PON_SCORING_TEAMS (self-reference) — ORIG_TEAM_ID links a team to a source team.
- PON_SCORING_TEAM_MEMBERS — References TEAM_ID; stores the collaboration members assigned to each scoring team.
- PON_SCORING_TEAM_SECTIONS — References TEAM_ID; defines the attribute groups or sections a team evaluates.
- PON_THREAD_ENTRIES — References SCORING_TEAM_ID; stores discussion thread entries associated with a scoring team.
-
Table: PON_SCORING_TEAMS
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAMS, object_name:PON_SCORING_TEAMS, status:VALID, product: PON - Sourcing , description: 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 attribute grou , implementation_dba_data: PON.PON_SCORING_TEAMS ,
-
Table: PON_SCORING_TEAMS
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAMS, object_name:PON_SCORING_TEAMS, status:VALID, product: PON - Sourcing , description: 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 attribute grou , implementation_dba_data: PON.PON_SCORING_TEAMS ,
-
VIEW: PON.PON_SCORING_TEAMS#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_SCORING_TEAMS#, status:VALID,
-
VIEW: PON.PON_SCORING_TEAMS#
12.2.2
-
SYNONYM: APPS.PON_SCORING_TEAMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_SCORING_TEAMS, status:VALID,
-
Table: PON_SCORING_TEAM_MEMBERS
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAM_MEMBERS, object_name:PON_SCORING_TEAM_MEMBERS, status:VALID, product: PON - Sourcing , description: PON_SCORING_TEAM_MEMBERS is a logical intersection entity between PON_NEG_TEAM_MEMBERS and PON_SCORING_TEAMS. It lists the members for each scoring team for a given negotiation. Typically this will be a subset of those collaboration team me , implementation_dba_data: PON.PON_SCORING_TEAM_MEMBERS ,
-
SYNONYM: APPS.PON_SCORING_TEAMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_SCORING_TEAMS, status:VALID,
-
Table: PON_SCORING_TEAM_MEMBERS
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAM_MEMBERS, object_name:PON_SCORING_TEAM_MEMBERS, status:VALID, product: PON - Sourcing , description: PON_SCORING_TEAM_MEMBERS is a logical intersection entity between PON_NEG_TEAM_MEMBERS and PON_SCORING_TEAMS. It lists the members for each scoring team for a given negotiation. Typically this will be a subset of those collaboration team me , implementation_dba_data: PON.PON_SCORING_TEAM_MEMBERS ,
-
TABLE: PON.PON_SCORING_TEAMS
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAMS, object_name:PON_SCORING_TEAMS, status:VALID,
-
TABLE: PON.PON_SCORING_TEAMS
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAMS, object_name:PON_SCORING_TEAMS, status:VALID,
-
Table: PON_THREAD_ENTRIES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_THREAD_ENTRIES, object_name:PON_THREAD_ENTRIES, status:VALID, product: PON - Sourcing , description: Stores message content for threaded discussions , implementation_dba_data: PON.PON_THREAD_ENTRIES ,
-
PACKAGE: APPS.PON_TEAM_SCORING_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PON_TEAM_SCORING_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.PON_OA_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_OA_UTIL_PKG, status:VALID,
-
Table: PON_SCORING_TEAM_SECTIONS
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAM_SECTIONS, object_name:PON_SCORING_TEAM_SECTIONS, status:VALID, product: PON - Sourcing , description: PON_SCORING_TEAM_SECTIONS records the team that has been assigned the responsibility of scoring each header attribute group for a negotiation that allows team scoring. Only one team may be assigned to a particular header attribute group wh , implementation_dba_data: PON.PON_SCORING_TEAM_SECTIONS ,
-
Table: PON_THREAD_ENTRIES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_THREAD_ENTRIES, object_name:PON_THREAD_ENTRIES, status:VALID, product: PON - Sourcing , description: Stores message content for threaded discussions , implementation_dba_data: PON.PON_THREAD_ENTRIES ,
-
Table: PON_SCORING_TEAM_SECTIONS
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAM_SECTIONS, object_name:PON_SCORING_TEAM_SECTIONS, status:VALID, product: PON - Sourcing , description: PON_SCORING_TEAM_SECTIONS records the team that has been assigned the responsibility of scoring each header attribute group for a negotiation that allows team scoring. Only one team may be assigned to a particular header attribute group wh , implementation_dba_data: PON.PON_SCORING_TEAM_SECTIONS ,
-
PACKAGE: APPS.PON_TEAM_SCORING_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PON_TEAM_SCORING_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.PON_TEAM_SCORING_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_TEAM_SCORING_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.PON_OA_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PON_OA_UTIL_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.PON_TEAM_SCORING_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PON_TEAM_SCORING_UTIL_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
Table: PON_AUCTION_HEADERS_ALL
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID, product: PON - Sourcing , description: Stores the negotiations header level details. , implementation_dba_data: PON.PON_AUCTION_HEADERS_ALL ,
-
12.2.2 DBA Data
12.2.2
-
Table: PON_AUCTION_HEADERS_ALL
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID, product: PON - Sourcing , description: Stores the negotiations header level details. , implementation_dba_data: PON.PON_AUCTION_HEADERS_ALL ,
-
PACKAGE BODY: APPS.PON_NEGOTIATION_COPY_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PON_NEGOTIATION_COPY_GRP, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PON_NEGOTIATION_COPY_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_NEGOTIATION_COPY_GRP, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PON_PRINTING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PON_PRINTING_PKG, status:VALID,
-
TABLE: PON.PON_SCORING_TEAM_MEMBERS
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAM_MEMBERS, object_name:PON_SCORING_TEAM_MEMBERS, status:VALID,
-
TABLE: PON.PON_SCORING_TEAM_MEMBERS
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_SCORING_TEAM_MEMBERS, object_name:PON_SCORING_TEAM_MEMBERS, status:VALID,
-
PACKAGE BODY: APPS.PON_PRINTING_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_PRINTING_PKG, status:VALID,
-
eTRM - PON Tables and Views
12.1.1
description: Holds the debug statements for workflow processes ,
-
eTRM - PON Tables and Views
12.2.2
description: Holds the debug statements for workflow processes ,
-
APPS.PON_OA_UTIL_PKG SQL Statements
12.1.1
-
APPS.PON_OA_UTIL_PKG SQL Statements
12.2.2
-
APPS.PON_PRINTING_PKG dependencies on PON_SCORING_TEAMS
12.1.1
-
APPS.PON_OA_UTIL_PKG dependencies on PON_SCORING_TEAMS
12.2.2
-
APPS.PON_OA_UTIL_PKG dependencies on PON_SCORING_TEAMS
12.1.1
-
APPS.PON_TEAM_SCORING_UTIL_PVT dependencies on PON_SCORING_TEAMS
12.2.2
-
APPS.PON_TEAM_SCORING_UTIL_PVT dependencies on PON_SCORING_TEAMS
12.1.1
-
APPS.PON_NEGOTIATION_COPY_GRP dependencies on PON_SCORING_TEAMS
12.2.2
-
APPS.PON_PRINTING_PKG dependencies on PON_SCORING_TEAMS
12.2.2
-
APPS.PON_NEGOTIATION_COPY_GRP dependencies on PON_SCORING_TEAMS
12.1.1