Search Results ozf_resale_lines_all
Overview
OZF_RESALE_LINES_ALL is the transactional detail table within Oracle Trade Management (OZF) that stores chargeback line information. In Oracle EBS 12.1.1 and 12.2.2, it functions as the line-level counterpart to OZF_RESALE_HEADERS_ALL, capturing the individual resale/chargeback transactions processed against trade promotion and channel rebate agreements. Each row represents a single resale line documenting a product transfer between trading partners, enriched with party, pricing, item, and sourcing details used to calculate and validate chargeback claims.
From a Data Vault modeling perspective, the heuristic classification for this table is satellite-leaning. The presence of a single-column surrogate primary key (RESALE_LINE_ID) alongside multiple foreign keys — RESALE_HEADER_ID, BILL_TO_CUST_ACCOUNT_ID, SHIP_TO_CUST_ACCOUNT_ID, and others — suggests the table acts as an aggregated descriptive satellite attached to parent hubs such as customers, inventory items, and resale headers, rather than as a pure hub or link. This classification is offered as a modeling suggestion, and the table's 194 columns reinforce its role as a wide descriptive structure.
Key Information Stored
The documented schema contains 194 columns. The most operationally significant among them include:
- RESALE_LINE_ID — the surrogate primary key, defined by unique index OZF_RESALE_LINES_ALL_U1 and enforced by constraint OZF_RESALE_LINES_ALL_PK.
- RESALE_HEADER_ID — foreign key to OZF_RESALE_HEADERS_ALL, linking each line to its parent chargeback transaction.
- BILL_TO_CUST_ACCOUNT_ID, BILL_TO_SITE_USE_ID, SHIP_TO_CUST_ACCOUNT_ID, SHIP_TO_SITE_USE_ID — party and site references into HZ_CUST_ACCOUNTS and HZ_CUST_SITE_USES_ALL, capturing the billing and shipping relationships for the resale.
- END_CUST_PARTY_ID, END_CUST_PARTY_NAME, END_CUST_LOCATION — end-customer identification, essential for direct and indirect channel chargeback attribution.
- INVENTORY_ITEM_ID, ITEM_NUMBER, ITEM_DESCRIPTION, UPC_CODE, and the INVENTORY_ITEM_SEGMENT1 through SEGMENT20 flexfield columns — item identity and descriptive attributes.
- QUANTITY, UOM_CODE, PURCHASE_UOM_CODE — resale quantities and units of measure.
- SELLING_PRICE, ACCTD_SELLING_PRICE, PURCHASE_PRICE, ACCTD_PURCHASE_PRICE — pricing basis for chargeback computation.
- CURRENCY_CODE, EXCHANGE_RATE, EXCHANGE_RATE_TYPE, EXCHANGE_RATE_DATE — currency conversion context.
- ORIG_SYSTEM_REFERENCE, ORIG_SYSTEM_LINE_REFERENCE, ORIG_SYSTEM_ITEM_NUMBER — source-system traceability for imported resale data.
- ORG_ID and SECURITY_GROUP_ID — multi-org and security group partitioning.
- STATUS_CODE and PRODUCT_TRANSFER_MOVEMENT_TYPE — processing status and transfer classification.
Common Use Cases and Queries
Typical uses include chargeback validation, resale reporting by customer or item, and reconciliation of incoming resale feeds against open claims. A common query joins lines to headers and customer accounts:
SELECT l.resale_line_id, l.resale_header_id, h.resale_number,
l.bill_to_cust_account_id, l.quantity, l.selling_price
FROM ozf_resale_lines_all l,
ozf_resale_headers_all h
WHERE l.resale_header_id = h.resale_header_id
AND l.org_id = :p_org_id;
Reporting often aggregates resale quantities by INVENTORY_ITEM_ID or END_CUST_PARTY_ID to measure indirect sales, or joins to OZF_RESALE_ADJUSTMENTS_ALL to net adjustments against a given line.
Related Objects
- OZF_RESALE_HEADERS_ALL — parent table; joined on RESALE_HEADER_ID.
- OZF_RESALE_ADJUSTMENTS_ALL — child table referencing RESALE_LINE_ID, storing line-level adjustments.
- OZF_RESALE_BATCH_LINE_MAPS_ALL — maps batch transactions to resale lines via RESALE_LINE_ID.
- HZ_CUST_ACCOUNTS — source of bill-to and ship-to customer references.
- HZ_CUST_SITE_USES_ALL — source of bill-to and ship-to site use references.
- FND_SECURITY_GROUPS — referenced through SECURITY_GROUP_ID for data security partitioning.
-
Table: OZF_RESALE_LINES_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_LINES_ALL, object_name:OZF_RESALE_LINES_ALL, status:VALID, product: OZF - Trade Management , description: Chargeback Lines information , implementation_dba_data: OZF.OZF_RESALE_LINES_ALL ,
-
Table: OZF_RESALE_LINES_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_LINES_ALL, object_name:OZF_RESALE_LINES_ALL, status:VALID, product: OZF - Trade Management , description: Chargeback Lines information , implementation_dba_data: OZF.OZF_RESALE_LINES_ALL ,
-
VIEW: APPS.OZF_RESALE_LINES_ALL_DFV
12.2.2
-
VIEW: APPS.OZF_RESALE_LINES_ALL_DFV
12.1.1
-
SYNONYM: APPS.OZF_RESALE_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_RESALE_LINES_ALL, status:VALID,
-
SYNONYM: APPS.OZF_RESALE_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_RESALE_LINES_ALL, status:VALID,
-
APPS.OZF_PARTY_MERGE_PVT SQL Statements
12.2.2
-
Table: OZF_RESALE_ADJUSTMENTS_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_ADJUSTMENTS_ALL, object_name:OZF_RESALE_ADJUSTMENTS_ALL, status:VALID, product: OZF - Trade Management , description: charge back price adjustments , implementation_dba_data: OZF.OZF_RESALE_ADJUSTMENTS_ALL ,
-
Table: OZF_RESALE_ADJUSTMENTS_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_ADJUSTMENTS_ALL, object_name:OZF_RESALE_ADJUSTMENTS_ALL, status:VALID, product: OZF - Trade Management , description: charge back price adjustments , implementation_dba_data: OZF.OZF_RESALE_ADJUSTMENTS_ALL ,
-
APPS.OZF_PARTY_MERGE_PVT SQL Statements
12.1.1
-
Table: OZF_RESALE_HEADERS_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_HEADERS_ALL, object_name:OZF_RESALE_HEADERS_ALL, status:VALID, product: OZF - Trade Management , description: Resale header information , implementation_dba_data: OZF.OZF_RESALE_HEADERS_ALL ,
-
Table: OZF_RESALE_BATCH_LINE_MAPS_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_BATCH_LINE_MAPS_ALL, object_name:OZF_RESALE_BATCH_LINE_MAPS_ALL, status:VALID, product: OZF - Trade Management , description: This table contains the mappings between the batch header and the resale order lines that were submitted along with that batch , implementation_dba_data: OZF.OZF_RESALE_BATCH_LINE_MAPS_ALL ,
-
Table: OZF_RESALE_BATCH_LINE_MAPS_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_BATCH_LINE_MAPS_ALL, object_name:OZF_RESALE_BATCH_LINE_MAPS_ALL, status:VALID, product: OZF - Trade Management , description: This table contains the mappings between the batch header and the resale order lines that were submitted along with that batch , implementation_dba_data: OZF.OZF_RESALE_BATCH_LINE_MAPS_ALL ,
-
Table: OZF_RESALE_HEADERS_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_RESALE_HEADERS_ALL, object_name:OZF_RESALE_HEADERS_ALL, status:VALID, product: OZF - Trade Management , description: Resale header information , implementation_dba_data: OZF.OZF_RESALE_HEADERS_ALL ,
-
PACKAGE BODY: APPS.OZF_RESALE_LINES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_RESALE_LINES_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_PARTY_MERGE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_PARTY_MERGE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_MULTI_CURR_MIG_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_MULTI_CURR_MIG_PVT, status:VALID,
-
SYNONYM: APPS.OZF_RESALE_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_RESALE_LINES, status:VALID,
-
VIEW: APPS.OZF_RESALE_LINES_ALL_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:OZF_RESALE_LINES_ALL_DFV, status:VALID,
-
SYNONYM: APPS.OZF_RESALE_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_RESALE_LINES, status:VALID,
-
VIEW: APPS.OZF_RESALE_LINES_ALL_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:OZF_RESALE_LINES_ALL_DFV, status:VALID,
-
PACKAGE BODY: APPS.OZF_RESALE_LINES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_RESALE_LINES_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_RESALE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_RESALE_PUB, status:VALID,
-
PACKAGE BODY: APPS.OZF_SPECIAL_PRICING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_SPECIAL_PRICING_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_PARTY_MERGE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_PARTY_MERGE_PVT, status:VALID,
-
Table: HZ_CUST_SITE_USES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUST_SITE_USES_ALL, object_name:HZ_CUST_SITE_USES_ALL, status:VALID, product: AR - Receivables , description: Stores business purposes assigned to customer account sites. , implementation_dba_data: AR.HZ_CUST_SITE_USES_ALL ,
-
PACKAGE BODY: APPS.OZF_VOLUME_CALCULATION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_VOLUME_CALCULATION_PUB, status:VALID,
-
PACKAGE BODY: APPS.OZF_FUND_UTILIZED_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_FUND_UTILIZED_PUB, status:VALID,
-
PACKAGE BODY: APPS.OZF_QP_QUAL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_QP_QUAL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_VOLUME_CALCULATION_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_VOLUME_CALCULATION_PUB, status:VALID,
-
PACKAGE BODY: APPS.OZF_NET_ACCRUAL_ENGINE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NET_ACCRUAL_ENGINE_PVT, status:VALID,
-
Table: HZ_CUST_SITE_USES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUST_SITE_USES_ALL, object_name:HZ_CUST_SITE_USES_ALL, status:VALID, product: AR - Receivables , description: Stores business purposes assigned to customer account sites. , implementation_dba_data: AR.HZ_CUST_SITE_USES_ALL ,
-
PACKAGE BODY: APPS.OZF_TP_ACCRUAL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_TP_ACCRUAL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_RESALE_COMMON_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_RESALE_COMMON_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.OZF_ADJUSTMENT_EXT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_ADJUSTMENT_EXT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_NET_ACCRUAL_ENGINE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NET_ACCRUAL_ENGINE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_ADJUSTMENT_EXT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_ADJUSTMENT_EXT_PVT, status:VALID,
-
VIEW: APPS.OZF_RESALE_LINES_V
12.2.2
-
VIEW: APPS.OZF_RESALE_LINES_V
12.1.1
-
VIEW: OZF.OZF_RESALE_LINES_ALL#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_RESALE_LINES_ALL#, status:VALID,
-
Table: HZ_CUST_ACCOUNTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUST_ACCOUNTS, object_name:HZ_CUST_ACCOUNTS, status:VALID, product: AR - Receivables , description: Stores information about customer accounts. , implementation_dba_data: AR.HZ_CUST_ACCOUNTS ,
-
APPS.OZF_RESALE_PVT SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: HZ_CUST_ACCOUNTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUST_ACCOUNTS, object_name:HZ_CUST_ACCOUNTS, status:VALID, product: AR - Receivables , description: Stores information about customer accounts. , implementation_dba_data: AR.HZ_CUST_ACCOUNTS ,
-
APPS.OZF_MULTI_CURR_MIG_PVT SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1