Search Results closed_for_invoice_date
Overview
POBV_PLAN_PO_LINE_SHIPMENTS is an APPS-owned database view in the Oracle E-Business Suite Purchasing (PO) module, delivered for both 12.1.1 and 12.2.2. The "POBV" prefix identifies it as a Purchasing business view generated and maintained through the Oracle ETRM (E-Business Suite Tables and Views Reference Manual) framework, and its documented description carries the notation "- Retrofitted", indicating that the entity was reconstructed or re-pointed during the 12.2 architectural changes, notably the migration of the organization model to the Multi-Org Access Control (MOAC) security layer and the relocation of certain HR-related definitions.
The view presents planned purchase order line shipment information — a denormalized projection that joins shipment (line location) records with their parent line, header, and ship-to organization. It is consumed primarily by Oracle Purchasing forms, Oracle Daily Business Intelligence for Procurement, and by customer-developed reports and interfaces that need shipment-level detail without navigating the full base-table hierarchy. The user search term "closed_for_invoice_date" relates to this view's role in exposing the open/closed state of a shipment, which downstream drives invoicing eligibility. In the EBS data model, the shipment-level columns CLOSED_CODE, CLOSED_DATE, and CLOSED_REASON (all present in this view) determine whether a line location can still be matched to an invoice; the invoice-close tolerance column INVOICE_CLOSE_TOLERANCE likewise governs automatic closure for invoicing.
Underlying Base Objects
ETRM documents four referenced base objects, all exposed through APPS synonyms: HR_ALL_ORGANIZATION_UNITS, PO_HEADERS_ALL, PO_LINES_ALL, and PO_LINE_LOCATIONS_ALL. The view text confirms the join pattern: PO_LINE_LOCATIONS_ALL (aliased PS) supplies the shipment grain and most attributes; PO_LINES_ALL (PL) supplies the line number; PO_HEADERS_ALL (PH) supplies the header segment used as the PO number; and HR_ALL_ORGANIZATION_UNITS (OP) supplies the operating unit name, joined on ORG_ID. Because PO_HEADERS_ALL and PO_LINE_LOCATIONS_ALL are _ALL tables, MOAC predicates apply and each row is implicitly restricted to the operating units the session is authorized to access. The view exposes ORG_ID directly, allowing reporting tools and custom SQL to filter or group by operating unit.
Key Columns
- LINE_LOCATION_ID, SHIPMENT_NUM, PO_LINE_ID, PO_HEADER_ID, SEGMENT1 — primary identifiers and the human-readable PO number.
- ORG_ID, NAME — operating unit identifier and its organization name from HR_ALL_ORGANIZATION_UNITS.
- NEED_BY_DATE, PROMISED_DATE, LAST_ACCEPT_DATE — scheduling and delivery dates used in expediting and supplier performance analysis.
- QUANTITY, QUANTITY_SHIPPED, QUANTITY_RECEIVED, QUANTITY_CANCELLED, QUANTITY_ACCEPTED, QUANTITY_REJECTED, QUANTITY_BILLED — the shipment quantity lifecycle, supporting receipt, inspection, and billing reconciliation.
- APPROVED_FLAG, APPROVED_DATE, CANCEL_FLAG, CANCEL_DATE, CANCEL_REASON — approval and cancellation state.
- CLOSED_CODE, CLOSED_DATE, CLOSED_REASON — the document state flags that determine whether the shipment is closed, and why, directly relevant to the "closed for invoice" concept.
- INVOICE_CLOSE_TOLERANCE, RECEIVE_CLOSE_TOLERANCE, QTY_RCV_TOLERANCE — tolerances governing automatic closure and over-receipt.
- FIRM_STATUS_LOOKUP_CODE, ENCUMBERED_FLAG, ENCUMBERED_DATE, ACCRUE_ON_RECEIPT_FLAG, ALLOW_SUBSTITUTE_RECEIPTS_FLAG — firming and encumbrance controls.
- RECEIPT_REQUIRED_FLAG, INSPECTION_REQUIRED_FLAG — combined by the view into a derived matching type (2-Way, 3-Way, 4-Way) via a DECODE expression.
- SHIP_TO_ORGANIZATION_ID, SHIP_TO_LOCATION_ID, RECEIVING_ROUTING_ID — destination and routing information.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — audit columns.
Note the embedded `_LA:` descriptor strings in the view text. These are Oracle Lookup/Attribute markers used by the EBS "Your Page"/personalization and descriptive flexfield rendering layers; they are literal, non-functional text in the view definition and carry no queryable meaning.
Common Use Cases and Queries
The view is most often used to report on shipment status, outstanding quantities, and closure state without joining PO_LINE_LOCATIONS_ALL to its parents. A typical open-shipment query filters on approval and closure:
SELECT segment1, line_num, shipment_num, need_by_date, quantity, quantity_received, closed_code, closed_date FROM pobv_plan_po_line_shipments WHERE org_id = :p_org_id AND closed_code = 'OPEN';SELECT segment1, shipment_num, quantity - quantity_billed open_qty FROM pobv_plan_po_line_shipments WHERE invoice_close_tolerance IS NOT NULL AND NVL(closed_code,'OPEN') <> 'CLOSED FOR INVOICE';SELECT org_id, name, COUNT(*) FROM pobv_plan_po_line_shipments GROUP BY org_id, name;
Because the view is a non-materialized join, no refresh is required, but performance depends on the indexes on PO_LINE_LOCATIONS_ALL and PO_LINES_ALL; large extracts should always be constrained by ORG_ID and date ranges. The view is read-only and is not a supported update target for purchasing transactions.
-
View: POBV_PLAN_PO_LINE_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINE_SHIPMENTS, object_name:POBV_PLAN_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_LINE_SHIPMENTS ,
-
View: POBV_SCHEDULED_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_SCHEDULED_SHIPMENTS, object_name:POBV_SCHEDULED_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_SCHEDULED_SHIPMENTS ,
-
View: POBV_BKT_PO_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_SHIPMENTS, object_name:POBV_BKT_PO_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_SHIPMENTS ,
-
View: POBV_BKT_PO_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_SHIPMENTS, object_name:POBV_BKT_PO_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_SHIPMENTS ,
-
View: POBV_STD_PO_LINE_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINE_SHIPMENTS, object_name:POBV_STD_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_LINE_SHIPMENTS ,
-
View: POBV_PLAN_PO_LINE_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINE_SHIPMENTS, object_name:POBV_PLAN_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_LINE_SHIPMENTS ,
-
View: POBV_SCHEDULED_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_SCHEDULED_SHIPMENTS, object_name:POBV_SCHEDULED_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_SCHEDULED_SHIPMENTS ,
-
View: POFV_PLAN_PO_LINE_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_LINE_SHIPMENTS, object_name:POFV_PLAN_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PLAN_PO_LINE_SHIPMENTS ,
-
View: POBV_PO_LINE_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINE_SHIPMENTS, object_name:POBV_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_LINE_SHIPMENTS ,
-
View: POBV_STD_PO_LINE_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINE_SHIPMENTS, object_name:POBV_STD_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_LINE_SHIPMENTS ,
-
View: POFV_SCHEDULED_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_SCHEDULED_SHIPMENTS, object_name:POFV_SCHEDULED_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_SCHEDULED_SHIPMENTS ,
-
View: POFV_PLAN_PO_LINE_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_LINE_SHIPMENTS, object_name:POFV_PLAN_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PLAN_PO_LINE_SHIPMENTS ,
-
View: POBV_PO_LINE_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINE_SHIPMENTS, object_name:POBV_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_LINE_SHIPMENTS ,
-
View: POFV_BKT_PO_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_SHIPMENTS, object_name:POFV_BKT_PO_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_BKT_PO_SHIPMENTS ,
-
View: POFV_STD_PO_LINE_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_STD_PO_LINE_SHIPMENTS, object_name:POFV_STD_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_STD_PO_LINE_SHIPMENTS ,
-
View: POFV_SCHEDULED_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_SCHEDULED_SHIPMENTS, object_name:POFV_SCHEDULED_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_SCHEDULED_SHIPMENTS ,
-
View: POFV_PO_LINE_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PO_LINE_SHIPMENTS, object_name:POFV_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PO_LINE_SHIPMENTS ,
-
View: POFV_STD_PO_LINE_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_STD_PO_LINE_SHIPMENTS, object_name:POFV_STD_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_STD_PO_LINE_SHIPMENTS ,
-
View: POFV_BKT_PO_SHIPMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_SHIPMENTS, object_name:POFV_BKT_PO_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_BKT_PO_SHIPMENTS ,
-
View: POFV_PO_LINE_SHIPMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PO_LINE_SHIPMENTS, object_name:POFV_PO_LINE_SHIPMENTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_PO_LINE_SHIPMENTS ,
-
View: PO_LINE_LOCATIONS_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_TRX_V, object_name:PO_LINE_LOCATIONS_TRX_V, status:VALID, product: PO - Purchasing , description: View on po_line_locations table. , implementation_dba_data: APPS.PO_LINE_LOCATIONS_TRX_V ,
-
View: PO_LINE_LOCATIONS_MERGE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_MERGE_V, object_name:PO_LINE_LOCATIONS_MERGE_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_LINE_LOCATIONS_MERGE_V ,
-
View: PO_LINE_LOCATIONS_MERGE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINE_LOCATIONS_MERGE_V, object_name:PO_LINE_LOCATIONS_MERGE_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_LINE_LOCATIONS_MERGE_V ,