WIP_TRANSACTIONS
Schema: WIPtransactionPer inventory orgThe WIP resource ledger — one row per resource charge (labor, machine, outside processing) with operation, resource, rates, and the purchasing/receiving references that drive outside-processing charges
Resource and overhead charges only — material movements live in the material transaction ledger. Outside-processing rows carry the PO header and the receiving transaction that triggered the charge, tying shop-floor cost back to procurement.
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
18 fields · 1 key
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | TRANSACTION_ID | Surrogate key of the resource charge | NUMBER | Key |
| 2 | ORGANIZATION_ID | Inventory organization | NUMBER | |
| 3 | WIP_ENTITY_ID | The job or schedule charged | NUMBER | |
| 4 | LINE_ID | The repetitive production line, for repetitive charges | NUMBER | |
| 5 | ACCT_PERIOD_ID | Accounting period of the charge | NUMBER | |
| 6 | OPERATION_SEQ_NUM | The operation charged | NUMBER | |
| 7 | RESOURCE_SEQ_NUM | The resource sequence within the operation | NUMBER | |
| 8 | RESOURCE_ID | The resource charged | NUMBER | |
| 9 | DEPARTMENT_ID | The department charged | NUMBER | |
| 10 | TRANSACTION_DATE | When the charge happened — the primary analysis date | DATE | Filter date |
| 11 | TRANSACTION_TYPE | The charge kind — numeric, undecoded; this column exists here, not on the move ledger | NUMBER | |
| 12 | TRANSACTION_QUANTITY | Charged quantity in the transaction UOM | NUMBER | |
| 13 | TRANSACTION_UOM | UOM of the charge | VARCHAR2 | |
| 14 | PRIMARY_QUANTITY | Quantity in the primary UOM | NUMBER | |
| 15 | ACTUAL_RESOURCE_RATE | The actual rate charged | NUMBER | |
| 16 | STANDARD_RESOURCE_RATE | The standard rate — variance analysis pairs it with the actual | NUMBER | |
| 17 | PO_HEADER_ID | The outside-processing PO behind the charge, when OSP-driven | NUMBER | |
| 18 | RCV_TRANSACTION_ID | The receiving transaction that triggered the OSP charge — the cross-ledger link to receiving | NUMBER |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading WIP_TRANSACTIONSon 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 : WIP_TRANSACTIONS — The WIP resource ledger — one row per resource charge (labor, machine, outside processing) with operation, resource, rates, and the purchasing/receiving references that drive outside-processing charges
-- Purpose: Column-selected read of WIP_TRANSACTIONS — auto-generated from field metadata
-- Grain : One row per inventory org (ORGANIZATION_ID) + TRANSACTION_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.TRANSACTION_ID AS "Surrogate key of the resource charge",
t.ORGANIZATION_ID AS "Inventory organization",
t.WIP_ENTITY_ID AS "The job or schedule charged",
t.LINE_ID AS "The repetitive production line, for repetitive charges",
t.ACCT_PERIOD_ID AS "Accounting period of the charge",
t.OPERATION_SEQ_NUM AS "The operation charged",
t.RESOURCE_SEQ_NUM AS "The resource sequence within the operation",
t.RESOURCE_ID AS "The resource charged",
t.DEPARTMENT_ID AS "The department charged",
t.TRANSACTION_DATE AS "When the charge happened — the primary analysis date",
t.TRANSACTION_TYPE AS "The charge kind — numeric, undecoded; this column exists here, not on the move ledger",
t.TRANSACTION_QUANTITY AS "Charged quantity in the transaction UOM",
t.TRANSACTION_UOM AS "UOM of the charge",
t.PRIMARY_QUANTITY AS "Quantity in the primary UOM",
t.ACTUAL_RESOURCE_RATE AS "The actual rate charged",
t.STANDARD_RESOURCE_RATE AS "The standard rate — variance analysis pairs it with the actual",
t.PO_HEADER_ID AS "The outside-processing PO behind the charge, when OSP-driven",
t.RCV_TRANSACTION_ID AS "The receiving transaction that triggered the OSP charge — the cross-ledger link to receiving"
FROM <catalog>.<schema>.WIP_TRANSACTIONS t
WHERE
t.ORGANIZATION_ID = <inventory_org_id> -- inventory org, NOT the operating unit — see quirks guide #two-orgs
-- AND t.TRANSACTION_ID = <TRANSACTION_ID>
-- AND t.TRANSACTION_DATE >= DATE '<DATE_FROM>'
-- AND t.TRANSACTION_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.TRANSACTION_ID;7 parameters not filled: <catalog>, <schema>, <inventory_org_id>, <TRANSACTION_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 WIP_TRANSACTIONS.WIP_ENTITY_ID = WIP_DISCRETE_JOBS.WIP_ENTITY_ID AND WIP_TRANSACTIONS.ORGANIZATION_ID = WIP_DISCRETE_JOBS.ORGANIZATION_IDON WIP_TRANSACTIONS.RESOURCE_ID = BOM_RESOURCES.RESOURCE_ID AND WIP_TRANSACTIONS.ORGANIZATION_ID = BOM_RESOURCES.ORGANIZATION_IDON WIP_TRANSACTIONS.PO_HEADER_ID = PO_HEADERS_ALL.PO_HEADER_IDON WIP_TRANSACTIONS.RCV_TRANSACTION_ID = RCV_TRANSACTIONS.TRANSACTION_ID AND WIP_TRANSACTIONS.ORGANIZATION_ID = RCV_TRANSACTIONS.ORGANIZATION_ID