Search Results ps_ubkt_dtl
Overview
PS_UBKT_DTL is a table in the GMP (Process Manufacturing Process Planning) schema of Oracle E-Business Suite. It stores the detailed line-level data behind the Material Activity Report, a planning and inventory analysis output used in process manufacturing environments. Each row represents a single transaction or balance movement for a material item within a reporting bucket, allowing planners and inventory analysts to reconstruct how an item's on-hand quantity changed across a reporting period.
The table carries a foreign key on MATL_REP_ID referencing PS_MATL_HDR, which establishes the reporting run or report header to which each detail line belongs. In Data Vault modeling terms, the mined relationship structure suggests PS_UBKT_DTL behaves as a satellite-leaning table relative to PS_MATL_HDR: it holds descriptive and measurable attributes tied to a parent header record rather than acting as an independent hub or an associative link between two hubs.
Key Information Stored
The documented physical schema contains 18 columns. The most significant include:
- LINE_ID – the surrogate primary key uniquely identifying each detail line.
- MATL_REP_ID – the foreign key to PS_MATL_HDR, linking the line to its parent report. Together with ITEM_ID this forms the primary business-key candidate for a report/item combination.
- ITEM_ID and INVENTORY_ITEM_ID – identifiers for the material item being reported.
- ORGN_CODE and ORGANIZATION_ID – the inventory organization context for the transaction.
- WHSE_CODE – the warehouse or subinventory location.
- DOC_TYPE and DOC_NO – the document type and number of the underlying inventory transaction.
- TRANS_DATE and TRANS_QTY – the date and quantity of the movement.
- START_BALANCE, PAST_DUE, and BALANCE – opening balance, past-due quantity, and resulting on-hand balance for the line.
- PLANNING_CLASS, PLANNING_CATEGORY_ID, and CRITICAL_IND – planning classification, category, and critical-item flag used for prioritization.
- CUST_VEND – customer or vendor reference associated with the movement.
Common Use Cases and Queries
Typical usage centers on the Material Activity Report and reconciliation of inventory movements. Analysts retrieve all detail lines for a given report header:
SELECT d.line_id, d.item_id, d.orgn_code, d.doc_type, d.doc_no,
d.trans_date, d.trans_qty, d.start_balance, d.balance
FROM gmp.ps_ubkt_dtl d
WHERE d.matl_rep_id = :report_id
ORDER BY d.item_id, d.trans_date;
Reconciliation queries compare the reconstructed balance against the inventory on-hand:
SELECT d.item_id, d.start_balance, SUM(d.trans_qty) AS net_movement, d.balance FROM gmp.ps_ubkt_dtl d WHERE d.matl_rep_id = :report_id GROUP BY d.item_id, d.start_balance, d.balance;
Planning-class and critical-item reports filter on PLANNING_CLASS and CRITICAL_IND, while organization-scoped reports join the header and filter on ORGANIZATION_ID or ORGN_CODE. Transaction-trace queries join on DOC_TYPE and DOC_NO to reconcile detail lines against source inventory transactions.
Related Objects
- PS_MATL_HDR – parent header table; joined via PS_UBKT_DTL.MATL_REP_ID = PS_MATL_HDR.MATL_REP_ID. This is the primary and documented relationship for PS_UBKT_DTL.
- PS_MATL_HDR (additional attributes) – supplies report-level parameters such as organization and report date used to scope detail queries.
- Inventory item master – looked up through ITEM_ID / INVENTORY_ITEM_ID to resolve item descriptions.
- Organization definitions – resolved through ORGANIZATION_ID and ORGN_CODE.
- Inventory transaction tables – matched on DOC_TYPE and DOC_NO for movement genealogy.
- Material Activity Report concurrent program – the primary consumer that populates and reads this table.
Because only one foreign key is documented, PS_MATL_HDR remains the essential join point; other relationships are inferred through descriptive columns rather than declared constraints.
-
Table: PS_UBKT_DTL
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_UBKT_DTL, object_name:PS_UBKT_DTL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Table used to store data for the Material Activity Report. , implementation_dba_data: GMP.PS_UBKT_DTL ,
-
Table: PS_UBKT_DTL
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_UBKT_DTL, object_name:PS_UBKT_DTL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Table used to store data for the Material Activity Report. , implementation_dba_data: GMP.PS_UBKT_DTL ,
-
VIEW: GMP.PS_UBKT_DTL#
12.2.2
owner:GMP, object_type:VIEW, object_name:PS_UBKT_DTL#, status:VALID,
-
SYNONYM: APPS.PS_UBKT_DTL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PS_UBKT_DTL, status:VALID,
-
SYNONYM: APPS.PS_UBKT_DTL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PS_UBKT_DTL, status:VALID,
-
VIEW: GMP.PS_UBKT_DTL#
12.2.2
-
TABLE: GMP.PS_UBKT_DTL
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_UBKT_DTL, object_name:PS_UBKT_DTL, status:VALID,
-
Table: PS_MATL_HDR
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_MATL_HDR, object_name:PS_MATL_HDR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Temporary data about the report , implementation_dba_data: GMP.PS_MATL_HDR ,
-
Table: PS_MATL_HDR
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_MATL_HDR, object_name:PS_MATL_HDR, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Temporary data about the report , implementation_dba_data: GMP.PS_MATL_HDR ,
-
TABLE: GMP.PS_UBKT_DTL
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.PS_UBKT_DTL, object_name:PS_UBKT_DTL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMPMPACT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMPMPACT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.GMPMPACT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMPMPACT, status:VALID,
-
APPS.GMPMPACT SQL Statements
12.1.1
-
APPS.GMPMPACT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMPMPACT
12.1.1
-
PACKAGE BODY: APPS.GMPMPACT
12.2.2
-
APPS.GMPMPACT dependencies on PS_UBKT_DTL
12.1.1
-
APPS.GMPMPACT dependencies on PS_UBKT_DTL
12.2.2
-
eTRM - GMP Tables and Views
12.2.2
description: * NOT USED * ,
-
eTRM - GMP Tables and Views
12.1.1
description: * NOT USED * ,
-
APPS.GMPMPACT dependencies on FND_DUAL
12.2.2
-
APPS.GMPMPACT dependencies on FND_DUAL
12.1.1
-
APPS.GMPMPACT dependencies on PS_MATL_HDR
12.1.1
-
APPS.GMPMPACT dependencies on PS_MATL_HDR
12.2.2
-
APPS.GMPMPACT dependencies on GMPMPACT
12.1.1
-
APPS.GMPMPACT dependencies on DUAL
12.1.1
-
APPS.GMPMPACT dependencies on GMPMPACT
12.2.2
-
APPS.GMPMPACT dependencies on DUAL
12.2.2
-
APPS.GMPMPACT dependencies on FND_FILE
12.2.2
-
APPS.GMPMPACT dependencies on FND_FILE
12.1.1
-
eTRM - GMP Tables and Views
12.1.1
description: * NOT USED * ,
-
eTRM - GMP Tables and Views
12.2.2
description: * NOT USED * ,
-
APPS.GMPMPACT dependencies on DBMS_SQL
12.1.1
-
APPS.GMPMPACT dependencies on DBMS_SQL
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1