PO_RELEASES_ALL
Schema: POtransactionOU-striped (ORG_ID)Blanket and planned PO releases — one row per release with its number, date, buyer, and approval status; the shipment schedules a release creates point back here
Release numbers are unique per PO header, not globally. Blanket agreement headers carry no shipments of their own until released.
What the badges mean
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or an APPS-schema view.
Fields
13 fields · 1 key
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | PO_RELEASE_ID | Surrogate key of the release | NUMBER | Key |
| 2 | PO_HEADER_ID | The blanket or planned PO being released — release numbers are unique within it | NUMBER | |
| 3 | ORG_ID | Operating unit | NUMBER | |
| 4 | RELEASE_NUM | Release number within the agreement | NUMBER | |
| 5 | RELEASE_DATE | When the release was created — the primary analysis date | DATE | Filter date |
| 6 | RELEASE_TYPE | Blanket vs scheduled release | VARCHAR2 | |
| 7 | AUTHORIZATION_STATUS | Approval status — same Purchasing lookup ladder as headers | VARCHAR2 | |
| 8 | APPROVED_FLAG | Y once approved | VARCHAR2 | |
| 9 | APPROVED_DATE | Last approval date | DATE | |
| 10 | CLOSED_CODE | Release closure state | VARCHAR2 | |
| 11 | CANCEL_FLAG | Y when cancelled | VARCHAR2 | |
| 12 | AGENT_ID | The buyer on the release | NUMBER | |
| 13 | REVISION_NUM | Revision number of the release | NUMBER |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading PO_RELEASES_ALLon Databricks — real DATE columns need no conversion, and the org anchor and the LAST_UPDATE_DATE watermark are already in place. Set your Unity Catalog location, schema, and org values below; they’re substituted into the SQL and the copy button.
-- ============================================================
-- Table : PO_RELEASES_ALL — Blanket and planned PO releases — one row per release with its number, date, buyer, and approval status; the shipment schedules a release creates point back here
-- Purpose: Column-selected read of PO_RELEASES_ALL — auto-generated from field metadata
-- Grain : One row per operating unit (ORG_ID) + PO_RELEASE_ID
-- Notes : Auto-generated skeleton for Oracle EBS R12 data landed in your lakehouse. Dates are real DATE/TIMESTAMP columns — no conversion needed. WHO audit columns omitted (see the quirks guide); the optional LAST_UPDATE_DATE watermark filter supports incremental extracts.
-- ============================================================
SELECT
t.PO_RELEASE_ID AS "Surrogate key of the release",
t.PO_HEADER_ID AS "The blanket or planned PO being released — release numbers are unique within it",
t.ORG_ID AS "Operating unit",
t.RELEASE_NUM AS "Release number within the agreement",
t.RELEASE_DATE AS "When the release was created — the primary analysis date",
t.RELEASE_TYPE AS "Blanket vs scheduled release",
t.AUTHORIZATION_STATUS AS "Approval status — same Purchasing lookup ladder as headers",
t.APPROVED_FLAG AS "Y once approved",
t.APPROVED_DATE AS "Last approval date",
t.CLOSED_CODE AS "Release closure state",
t.CANCEL_FLAG AS "Y when cancelled",
t.AGENT_ID AS "The buyer on the release",
t.REVISION_NUM AS "Revision number of the release"
FROM <catalog>.<schema>.PO_RELEASES_ALL t
WHERE
t.ORG_ID = <operating_unit_id> -- operating unit (MOAC does not filter extracts)
-- AND t.PO_RELEASE_ID = <PO_RELEASE_ID>
-- AND t.RELEASE_DATE >= DATE '<DATE_FROM>'
-- AND t.RELEASE_DATE <= DATE '<DATE_TO>'
-- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>' -- WHO watermark, bulk-stamped by batch jobs; see quirks guide #who-columns
ORDER BY t.PO_RELEASE_ID;7 parameters not filled: <catalog>, <schema>, <operating_unit_id>, <PO_RELEASE_ID>, <DATE_FROM>, <DATE_TO>, <watermark>
Relationships
1-hop neighbors — click a table to navigate there. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.
Join details
ON PO_LINE_LOCATIONS_ALL.PO_RELEASE_ID = PO_RELEASES_ALL.PO_RELEASE_ID AND PO_LINE_LOCATIONS_ALL.ORG_ID = PO_RELEASES_ALL.ORG_IDON PO_RELEASES_ALL.PO_HEADER_ID = PO_HEADERS_ALL.PO_HEADER_ID AND PO_RELEASES_ALL.ORG_ID = PO_HEADERS_ALL.ORG_ID