Search Results charge_periodicity_code
Overview
APPS.OEBV_ORDER_CANCELLATIONS is a read-only reporting view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that exposes line-level order cancellation records from Oracle Order Management. The view is owned by the APPS schema and is defined as a restricted projection over OE_ORDER_LINES_HISTORY, isolating the subset of history rows where the history type code equals 'CANCELLATION' and where a positive cancelled quantity exists. In effect, it acts as a filtered, security-aware window onto the order line history table, removing the need for report authors and integrators to reimplement the cancellation filter, the quantity threshold, and the sold-to-org security predicate themselves.
Because the view filters on CANCELLED_QUANTITY (the column referenced in the user's search), it is the primary supported source for answering questions about how much of an ordered line was cancelled in a given transaction. Typical consumers include order management dashboards, revenue and returns analyses, exception reports, OBIEE or BI Publisher data models, and custom PL/SQL that must reconcile cancelled quantities against ordered and shipped quantities.
Underlying Base Objects
The documented base object is OE_ORDER_LINES_HISTORY, accessed through a synonym in the APPS schema. This table stores the audit and history trail of order lines, with each row recording a change event qualified by HIST_TYPE_CODE. The view selects only rows where HIST_TYPE_CODE = 'CANCELLATION', ensuring that only true cancellation events are returned.
Two additional predicates are baked into the view definition:
NVL(CANCELLED_QUANTITY, 0) > 0— excludes cancellation history rows that carry no positive cancelled quantity, eliminating no-op or informational entries.'_SEC:SOLD_TO_ORG_ID' IS NOT NULL— a substituted security predicate that enforces Oracle EBS Multi-Org Access Control (MOAC), so that a query returns only cancellations for organizations the executing responsibility is permitted to see.
The view is declared WITH READ ONLY, so no insert, update, or delete operations are permitted through it; all maintenance must occur against the base table by the appropriate Order Management processes.
Key Columns
- CANCELLED_QUANTITY / CANCELLED_QUANTITY2 — the cancelled amount on the line, expressed in the primary and secondary (dual unit of measure) quantities respectively. These are the columns of direct interest to the user's search.
- HEADER_ID — identifier of the parent order header; joins to OE_ORDER_HEADERS_ALL.
- LINE_ID — identifier of the order line; joins to OE_ORDER_LINES_ALL.
- ORG_ID — the operating unit that owns the transaction, used by the MOAC security predicate.
- HIST_COMMENTS — free-text comments recorded at the time of cancellation.
- HIST_CREATION_DATE / HIST_CREATED_BY — when and by whom the cancellation history record was created.
- LAST_UPDATE_DATE / LAST_UPDATED_BY / CREATION_DATE — standard EBS audit columns.
- CHARGE_PERIODICITY_CODE — periodicity code associated with the line's charge, relevant for service and subscription lines.
- Reason (display column) — the first selected expression applies a lookup label to OE_ORDER_LINES_HISTORY.REASON_CODE against the OE_LOOKUPS lookup type CANCEL_CODE, returning the MEANING as the cancellation reason. This column appears under a derived label rather than a physical column name.
Common Use Cases and Queries
A frequent requirement is to list all cancellations for an order line, including the reason and quantity:
- Cancelled versus ordered quantity analysis: join the view to OE_ORDER_LINES_ALL on LINE_ID and compare CANCELLED_QUANTITY with ORDERED_QUANTITY to derive open or net quantities.
- Cancellation trend reporting: aggregate CANCELLED_QUANTITY by ORG_ID or by HIST_CREATION_DATE period to identify cancellation patterns.
- Reason code analysis: use the derived reason column to group cancellations by CANCEL_CODE meaning.
- Integration extracts: feed downstream systems with cancellation events, relying on the built-in MOAC predicate for data security.
A representative query is:
SELECT header_id, line_id, org_id, cancelled_quantity, cancelled_quantity2, hist_creation_date, hist_comments FROM apps.oebv_order_cancellations WHERE header_id = :p_header_id ORDER BY hist_creation_date;
Because the view enforces both the cancellation filter and organization security, such queries remain correct and compliant with EBS access rules without additional predicates. For historical reconciliation, note that the view reflects only cancellation history entries; current line status must still be obtained from OE_ORDER_LINES_ALL. The view is available in both 12.1.1 and 12.2.2, with the underlying table remaining OE_ORDER_LINES_HISTORY.
-
APPS.OE_OE_TOTALS_SUMMARY SQL Statements
12.2.2
-
APPS.OE_OE_TOTALS_SUMMARY SQL Statements
12.1.1
-
VIEW: APPS.OEBV_ORDER_CANCELLATIONS
12.1.1
-
View: OEBV_ORDER_CANCELLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_ORDER_CANCELLATIONS ONT.OEBV_ORDER_CANCELLATIONS, object_name:OEBV_ORDER_CANCELLATIONS, status:VALID, product: ONT - Order Management , description: Base BIS Business View for Order Cancellations. , implementation_dba_data: APPS.OEBV_ORDER_CANCELLATIONS ,
-
VIEW: APPS.OEBV_ORDER_CANCELLATIONS
12.2.2
-
View: OEBV_ORDER_CANCELLATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_ORDER_CANCELLATIONS ONT.OEBV_ORDER_CANCELLATIONS, object_name:OEBV_ORDER_CANCELLATIONS, status:VALID, product: ONT - Order Management , description: Base BIS Business View for Order Cancellations. , implementation_dba_data: APPS.OEBV_ORDER_CANCELLATIONS ,
-
VIEW: QP.QP_INT_LINES_T#
12.2.2
-
APPS.OE_LINEINFO_GRP SQL Statements
12.2.2
-
APPS.OE_LINEINFO_GRP SQL Statements
12.1.1
-
VIEW: APPS.OE_PRN_CHG_PERIODICITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_CHG_PERIODICITY_V, object_name:OE_PRN_CHG_PERIODICITY_V, status:VALID,
-
VIEW: APPS.OE_PRN_CHG_PERIODICITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_CHG_PERIODICITY_V, object_name:OE_PRN_CHG_PERIODICITY_V, status:VALID,
-
VIEW: ASO.ASO_QUOTE_LINES_ALL#
12.2.2
-
VIEW: APPS.OEBV_ORDER_CANCELLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_ORDER_CANCELLATIONS ONT.OEBV_ORDER_CANCELLATIONS, object_name:OEBV_ORDER_CANCELLATIONS, status:VALID,
-
VIEW: APPS.OEBV_ORDER_CANCELLATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_ORDER_CANCELLATIONS ONT.OEBV_ORDER_CANCELLATIONS, object_name:OEBV_ORDER_CANCELLATIONS, status:VALID,
-
VIEW: APPS.OEFV_ORDER_CANCELLATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_ORDER_CANCELLATIONS ONT.OEFV_ORDER_CANCELLATIONS, object_name:OEFV_ORDER_CANCELLATIONS, status:VALID,
-
VIEW: APPS.OEFV_ORDER_CANCELLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_ORDER_CANCELLATIONS ONT.OEFV_ORDER_CANCELLATIONS, object_name:OEFV_ORDER_CANCELLATIONS, status:VALID,
-
VIEW: APPS.ASO_OA_QUOTE_LINES_ALL_V
12.1.1
-
VIEW: APPS.ASO_OA_QUOTE_LINES_ALL_V
12.2.2
-
VIEW: APPS.OE_AK_INVENTORY_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID,
-
VIEW: APPS.OE_AK_INVENTORY_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID,
-
View: OE_AK_CHARGE_PERIODICITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_CHARGE_PERIODICITY_V, object_name:OE_AK_CHARGE_PERIODICITY_V, status:VALID, product: ONT - Order Management , description: View for defaulting charge_periodicity_code in OM , implementation_dba_data: APPS.OE_AK_CHARGE_PERIODICITY_V ,
-
View: OE_AK_CHARGE_PERIODICITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_CHARGE_PERIODICITY_V, object_name:OE_AK_CHARGE_PERIODICITY_V, status:VALID, product: ONT - Order Management , description: View for defaulting charge_periodicity_code in OM , implementation_dba_data: APPS.OE_AK_CHARGE_PERIODICITY_V ,
-
View: OE_PRN_CHG_PERIODICITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_CHG_PERIODICITY_V, object_name:OE_PRN_CHG_PERIODICITY_V, status:VALID, product: ONT - Order Management , description: The view is for obtaining recurring charges while printing a Sales Order , implementation_dba_data: APPS.OE_PRN_CHG_PERIODICITY_V ,
-
MATERIALIZED VIEW: APPS.IBE_BI_CUST_INTM_MV
12.1.1
-
TABLE: ASO.MLOG$_ASO_BI_QUOTE_LINES_A
12.1.1
owner:ASO, object_type:TABLE, object_name:MLOG$_ASO_BI_QUOTE_LINES_A, status:VALID,
-
View: OE_PRN_CHG_PERIODICITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_CHG_PERIODICITY_V, object_name:OE_PRN_CHG_PERIODICITY_V, status:VALID, product: ONT - Order Management , description: The view is for obtaining recurring charges while printing a Sales Order , implementation_dba_data: APPS.OE_PRN_CHG_PERIODICITY_V ,
-
APPS.ASO_BI_LINE_FACT_PVT SQL Statements
12.1.1
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_BALI_V
12.1.1
-
MATERIALIZED VIEW: APPS.ASO_BI_QLIN_L1_MV
12.1.1
-
VIEW: APPS.ASO_PVT_QTE_LINES_PRNT_BALI_V
12.2.2
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_BALI_V
12.2.2
-
VIEW: APPS.ASO_PVT_QTE_LINES_PRNT_BALI_V
12.1.1
-
PACKAGE BODY: APPS.ONT_CHG_PRDCTY_CODE_DEF_UTIL
12.1.1
-
VIEW: QP.QP_INT_LINES_T#
12.2.2
owner:QP, object_type:VIEW, object_name:QP_INT_LINES_T#, status:VALID,
-
View: OE_AK_INVENTORY_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INVENTORY_ITEMS_V ,
-
View: OEFV_ORDER_CANCELLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_ORDER_CANCELLATIONS ONT.OEFV_ORDER_CANCELLATIONS, object_name:OEFV_ORDER_CANCELLATIONS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_CANCELLATIONS ,
-
View: OEFV_ORDER_CANCELLATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_ORDER_CANCELLATIONS ONT.OEFV_ORDER_CANCELLATIONS, object_name:OEFV_ORDER_CANCELLATIONS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_CANCELLATIONS ,
-
View: OE_AK_INVENTORY_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INVENTORY_ITEMS_V ,
-
PACKAGE BODY: APPS.OE_LINEINFO_GRP
12.2.2
-
PACKAGE BODY: APPS.ONT_CHG_PRDCTY_CODE_DEF_UTIL
12.2.2
-
PACKAGE BODY: APPS.OE_LINEINFO_GRP
12.1.1
-
VIEW: APPS.OEBV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEBV_ORDER_LINES, object_name:OEBV_ORDER_LINES, status:VALID,
-
VIEW: APPS.OEBV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEBV_ORDER_LINES, object_name:OEBV_ORDER_LINES, status:VALID,
-
VIEW: ASO.ASO_QUOTE_LINES_ALL#
12.2.2
owner:ASO, object_type:VIEW, object_name:ASO_QUOTE_LINES_ALL#, status:VALID,
-
PACKAGE BODY: APPS.OE_OE_TOTALS_SUMMARY
12.2.2
-
PACKAGE BODY: APPS.OE_OE_TOTALS_SUMMARY
12.1.1
-
VIEW: APPS.OE_PRN_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_LINES_V, object_name:OE_PRN_ORDER_LINES_V, status:VALID,
-
TABLE: QP.QP_PREQ_LINES_TMP_T1
12.2.2
owner:QP, object_type:TABLE, fnd_design_data:QP.QP_PREQ_LINES_TMP_T1, object_name:QP_PREQ_LINES_TMP_T1, status:VALID,
-
TYPE: APPS.INV_EBI_ITEM_ORDER_OBJ
12.1.1
owner:APPS, object_type:TYPE, object_name:INV_EBI_ITEM_ORDER_OBJ, status:VALID,
-
TYPE: APPS.INV_EBI_ITEM_ORDER_OBJ
12.2.2
owner:APPS, object_type:TYPE, object_name:INV_EBI_ITEM_ORDER_OBJ, status:VALID,