Search Results gl_cancel_date
Overview
POBV_SCHEDULED_DISTRIBUTIONS is a reporting view owned by the APPS schema in Oracle E-Business Suite, belonging to the Purchasing (PO) product family. It presents a consolidated, denormalized projection of procurement distribution data restricted to a specific business context: planned purchase orders whose shipment type is SCHEDULED. The view joins distribution-level records with their parent shipment, line, header, release, and organization entities so that consumers can query scheduled distributions without reconstructing the multi-level purchasing hierarchy themselves.
The object is documented in EBS 12.1.1 and 12.2.2 as Retrofitted, indicating it was adapted for the later multi-org (MOAC) architecture and the ORG_ID-based security model. Its principal role is to support reporting, reconciliation, and integration scenarios where scheduled purchasing activity must be analyzed at the distribution level — for example, accrual, encumbrance, funds check, and billing status tracking. Notably, the view exposes GL_CANCELLED_DATE, the column users locate when searching for the term "gl_cancel_date," which records the General Ledger date on which the distribution was cancelled.
Underlying Base Objects
The view is defined over six documented base objects, all referenced through APPS synonyms:
- PO_DISTRIBUTIONS_ALL (alias PD) — the driving table, supplying distribution-level attributes and the GL accounting and encumbrance columns.
- PO_LINE_LOCATIONS_ALL (alias PS) — shipment-level information; filtered on
SHIPMENT_TYPE = 'SCHEDULED'. - PO_LINES_ALL (alias PL) — purchase order line details, including LINE_NUM.
- PO_HEADERS_ALL (alias PH) — header attributes such as SEGMENT1 (the PO number); filtered on
TYPE_LOOKUP_CODE = 'PLANNED'. - PO_RELEASES_ALL (alias PR) — release numbers where the distribution belongs to a release.
- HR_ALL_ORGANIZATION_UNITS (alias OP) — operating unit name resolved via ORG_ID.
The join is keyed on distribution-to-shipment, shipment-to-line, line-to-header, and header-to-release relationships, with the organization unit providing the MOAC operating unit context. Because these are _ALL tables, ORG_ID filtering is required in every query to enforce operating unit security.
Key Columns
- PO_DISTRIBUTION_ID / DISTRIBUTION_NUM — primary key and display number of the distribution.
- PO_HEADER_ID / SEGMENT1 — PO header identifier and PO number.
- LINE_NUM / SHIPMENT_NUM / RELEASE_NUM — line, shipment, and release references.
- ORG_ID / NAME — operating unit identifier and organization name.
- QUANTITY_ORDERED, QUANTITY_DELIVERED, QUANTITY_CANCELLED, QUANTITY_BILLED, AMOUNT_BILLED — quantity and amount tracking.
- GL_CANCELLED_DATE — the GL date on which the distribution was cancelled; this is the target of the "gl_cancel_date" search. Distinguished from GL_CLOSED_DATE, which records closing.
- GL_ENCUMBERED_DATE, GL_ENCUMBERED_PERIOD_NAME, ENCUMBERED_AMOUNT, UNENCUMBERED_AMOUNT, UNENCUMBERED_QUANTITY — encumbrance accounting attributes.
- CODE_COMBINATION_ID, BUDGET_ACCOUNT_ID, ACCRUAL_ACCOUNT_ID, VARIANCE_ACCOUNT_ID — accounting flexfield references.
- PROJECT_ID, TASK_ID, EXPENDITURE_TYPE, EXPENDITURE_ITEM_DATE, EXPENDITURE_ORGANIZATION_ID — project and expenditure integration columns.
- DESTINATION_ORGANIZATION_ID, DESTINATION_SUBINVENTORY, DELIVER_TO_LOCATION_ID — receiving destination details.
- Several
_LA:tag literals are surfaced for descriptive flexfield display purposes, such as accrual and encumbrance flags.
Common Use Cases and Queries
Typical uses include cancelled-distribution auditing, encumbrance reconciliation, and scheduled PO reporting.
Locating cancelled scheduled distributions by GL cancellation date:
SELECT SEGMENT1, DISTRIBUTION_NUM, GL_CANCELLED_DATE, QUANTITY_CANCELLED FROM POBV_SCHEDULED_DISTRIBUTIONS WHERE ORG_ID = :p_org_id AND GL_CANCELLED_DATE IS NOT NULL ORDER BY GL_CANCELLED_DATE DESC;
Encumbrance reconciliation for a period:
SELECT SEGMENT1, GL_ENCUMBERED_PERIOD_NAME, ENCUMBERED_AMOUNT, UNENCUMBERED_AMOUNT FROM POBV_SCHEDULED_DISTRIBUTIONS WHERE ORG_ID = :p_org_id AND GL_ENCUMBERED_PERIOD_NAME = :p_period;
Billing versus ordered quantity analysis:
SELECT SEGMENT1, DISTRIBUTION_NUM, QUANTITY_ORDERED, QUANTITY_BILLED, AMOUNT_BILLED FROM POBV_SCHEDULED_DISTRIBUTIONS WHERE ORG_ID = :p_org_id AND QUANTITY_ORDERED > QUANTITY_BILLED;
All queries must constrain ORG_ID to respect MOAC security, and joins to PO_DISTRIBUTIONS_ALL on PO_DISTRIBUTION_ID can be used when additional distribution attributes are required.
-
View: POBV_SCHEDULED_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_SCHEDULED_DISTRIBUTIONS, object_name:POBV_SCHEDULED_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_SCHEDULED_DISTRIBUTIONS ,
-
View: POBV_BKT_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_DISTRIBUTIONS, object_name:POBV_BKT_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_DISTRIBUTIONS ,
-
View: POBV_PLAN_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_DISTRIBUTIONS, object_name:POBV_PLAN_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_DISTRIBUTIONS ,
-
View: POBV_PLAN_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_DISTRIBUTIONS, object_name:POBV_PLAN_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_DISTRIBUTIONS ,
-
View: POBV_BKT_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_DISTRIBUTIONS, object_name:POBV_BKT_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_DISTRIBUTIONS ,
-
View: POBV_SCHEDULED_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_SCHEDULED_DISTRIBUTIONS, object_name:POBV_SCHEDULED_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_SCHEDULED_DISTRIBUTIONS ,
-
View: POBV_STD_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_DISTRIBUTIONS, object_name:POBV_STD_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_DISTRIBUTIONS ,
-
View: POBV_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_DISTRIBUTIONS, object_name:POBV_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_DISTRIBUTIONS ,
-
View: POBV_STD_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_DISTRIBUTIONS, object_name:POBV_STD_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_DISTRIBUTIONS ,
-
View: POBV_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_DISTRIBUTIONS, object_name:POBV_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_DISTRIBUTIONS ,
-
View: POFV_BKT_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_DISTRIBUTIONS, object_name:POFV_BKT_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_BKT_PO_DISTRIBUTIONS ,
-
View: POFV_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PO_DISTRIBUTIONS, object_name:POFV_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PO_DISTRIBUTIONS ,
-
View: POFV_STD_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_STD_PO_DISTRIBUTIONS, object_name:POFV_STD_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_STD_PO_DISTRIBUTIONS ,
-
View: POFV_PLAN_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_DISTRIBUTIONS, object_name:POFV_PLAN_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PLAN_PO_DISTRIBUTIONS ,
-
View: POFV_BKT_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_DISTRIBUTIONS, object_name:POFV_BKT_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_BKT_PO_DISTRIBUTIONS ,
-
View: POFV_PLAN_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_DISTRIBUTIONS, object_name:POFV_PLAN_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PLAN_PO_DISTRIBUTIONS ,
-
View: POFV_SCHEDULED_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_SCHEDULED_DISTRIBUTIONS, object_name:POFV_SCHEDULED_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_SCHEDULED_DISTRIBUTIONS ,
-
View: POFV_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PO_DISTRIBUTIONS, object_name:POFV_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PO_DISTRIBUTIONS ,
-
View: POFV_STD_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_STD_PO_DISTRIBUTIONS, object_name:POFV_STD_PO_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_STD_PO_DISTRIBUTIONS ,
-
View: POFV_SCHEDULED_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_SCHEDULED_DISTRIBUTIONS, object_name:POFV_SCHEDULED_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_SCHEDULED_DISTRIBUTIONS ,