Skip to the content.

CAC Intercompany SO Price List – Oracle EBS SQL Report

Oracle E-Business Suite SQL report from the Enginatics Library powered by Blitz Report™.

Overview

Report to show the intercompany sales order (SO) price list information, including the item number, price list name and related information. Price list parameter list of values are from the Intercompany Relationship Setups (from Oracle Inventory), per the price lists associated with the internal customers.

/* +=============================================================================+ – | Copyright 2010 - 2022 Douglas Volz Consulting, Inc. | – | All rights reserved. | – | Permission to use this code is granted provided the original author is | – | acknowledged. No warranties, express or otherwise is included in this | – | permission. | – +=============================================================================+ – | – | Original Author: Douglas Volz (doug@volzconsulting.com) – | – | Program Name: xxx_so_price_list_rept.sql – | – | Parameters: – | p_price_effective_date – Date the sales order list prices are effective, mandatory. – | p_price_list – Specific intercompany price list name to report – | p_item_number – Specific item number you wish to report, optional. – | p_category_set1 – The first item category set to report, typically the – | Cost or Product Line Category Set – | p_category_set2 – The second item category set to report, typically the – | Inventory Category Set – | – | Description: – | Report to show the SO price list information, including the item number, price – | list name and related information. – | – | Version Modified on Modified by Description – | ======= =========== ============== ========================================= – | 1.0 19 Sep 2010 Douglas Volz Created initial Report based on qp_price_list_lines_v – | 1.1 15 Dec 2010 Douglas Volz Cleaned up report for BO Repository – | 1.2 22 Dec 2010 Douglas Volz Fix for the Price End Date logic, change – | sysdate to ‘&p_price_effective_date’ to – | 1.3 01 Dec 2014 Douglas Volz Add Item Type column – | 1.4 15 Oct 2018 Douglas Volz Get price list Ids based on intercompany – | relationships, as opposed to hard-coding – | 1.5 16 Oct 2018 Douglas Volz And get prices from Customer default price – | list from hz_cust_accounts – | 1.6 20 Nov 2018 Douglas Volz Get Item Type from fnd_common_lookups as – | fnd_lookup_values as a duplicate ‘KIT’ – | 1.7 11 Dec 2018 Douglas Volz Avoid using the qp_price_list_pvt package, – | to see if this is faster. Use the query – | to finding the price list headers as the – | driving query or table, including the hint – | to make the price list header the driving table – | 1.8 17 Jun 2019 Douglas Volz Replace Oracle function – | apps.qp_price_list_pvt.get_product_uom_code – | with “qpa.product_uom_code”. – | 1.9 18 Sep 2019 Douglas Volz Added item status column and item categories – | 1.10 09 Jul 2022 Douglas Volz Changed back to Oracle QP price packages, to – | get price list information based on both – | categoryor item-specific price lists. – +=============================================================================+*/

Report Parameters

Price Effective Date, Intercompany Price List, Category Set 1, Category Set 2, Category Set 3, Item Number

Oracle EBS Tables Used

select, hz_cust_site_uses_all, hz_cust_accounts, hz_cust_acct_sites_all, mtl_system_items_vl, mtl_item_status_vl, mtl_units_of_measure_vl, fnd_lookup_values, qp_list_headers_b, qp_list_headers_tl, qp_list_lines, fnd_common_lookups

Report Categories

Enginatics

CAC Intercompany SO Price List vs. Item Cost Comparison, CAC Internal Order Shipment Margin, ONT Orders and Lines, PPF_WP3_OM_DETAILS, QP Customer Pricing Engine Request, ONT Order Upload

Running This SQL Without Blitz Report

Some Oracle EBS SQL reports in this library require functions from the utility package xxen_util. Install it before running the SQL directly against your Oracle EBS database.

Download & Import Options

Resource Link
Excel Example Output CAC Intercompany SO Price List 08-Jul-2022 221636.xlsx
Blitz Report™ XML Import CAC_Intercompany_SO_Price_List.xml
Full SQL on Enginatics www.enginatics.com/reports/cac-intercompany-so-price-list/

Case Study & Technical Analysis: CAC Intercompany SO Price List

Executive Summary

The CAC Intercompany SO Price List report is a specialized pricing audit tool designed for organizations managing complex intercompany supply chains. It provides a detailed view of the price lists associated with intercompany transactions, linking items to their specific price list definitions as determined by the intercompany relationship setups in Oracle Inventory. This report is crucial for ensuring that transfer prices between internal entities are correctly defined and maintained.

Business Challenge

In a multi-entity environment, transfer pricing is a critical component of financial compliance and profitability analysis.

Solution

This report simplifies the management of intercompany pricing by exposing the effective price list configuration.

Technical Architecture

The report logic mimics the Oracle pricing engine’s retrieval method:

Parameters

Performance

FAQ

Q: Does this show customer price lists? A: It focuses on price lists associated with internal customers used for intercompany transactions, but the underlying mechanism is the same as standard customer pricing.

Q: Why is the Price Effective Date mandatory? A: Price lists are date-sensitive. The system needs a specific reference date to determine which price line is active.

Q: Can I see expired prices? A: Yes, if you set the Price Effective Date to a date in the past.


© 2026 Enginatics