Search Results note_to_agent
Overview
PO_OWNED_REQUISITION_LINES is a security-enabled view owned by the APPS schema in Oracle E-Business Suite, catalogued under the PO — Purchasing product family. Its documented purpose is to expose requisition line information only for those requisitions that the querying user is authorized to access, effectively serving as an ownership-filtered projection of the base requisition line data. It is validated and available in both EBS 12.1.1 and 12.2.2.
Because requisition data frequently passes through Oracle Purchasing workflows and is surfaced into downstream reporting, this view plays a central role wherever row-level security on requisitions is required. It is the recommended access point for reports, concurrent programs, and integration extracts that must respect the requisition ownership model rather than bypassing it by reading the underlying synonym directly.
Underlying Base Objects
Per the ETRM 12.2.2 metadata, PO_OWNED_REQUISITION_LINES is defined over two referenced base objects:
- PO_REQUISITION_HEADERS_ALL (synonym) — the requisition header, aliased PORH in the view text, supplying PREPARER_ID.
- PO_REQUISITION_LINES (synonym) — the requisition line table, aliased PORL, which supplies the majority of the projected columns.
The view text joins PORL to PORH on the requisition header identifier, so each returned row represents a single requisition line enriched with its header’s preparer. No aggregation, grouping, or analytical transformation is applied; the view is a straight-line projection with an ownership constraint applied by the security model.
Key Columns
The view exposes the complete operational surface of a requisition line. Columns of particular note include:
- REQUISITION_LINE_ID / REQUISITION_HEADER_ID — primary and foreign keys linking the line to its header.
- PARENT_REQ_LINE_ID — the self-referencing identifier that ties a line to the requisition line from which it was generated, the attribute most commonly retrieved when tracing requisition lineage.
- LINE_NUM, LINE_TYPE_ID, CATEGORY_ID, ITEM_ID, ITEM_DESCRIPTION — the descriptive identity of the requested item or service.
- QUANTITY, UNIT_PRICE, UNIT_MEAS_LOOKUP_CODE, QUANTITY_DELIVERED, QUANTITY_CANCELLED — the commercial and fulfillment quantities.
- PREPARER_ID — sourced from the header, the requisition preparer against whom ownership security is evaluated.
- CLOSED_CODE, CANCEL_FLAG, CANCEL_DATE, CANCEL_REASON — lifecycle and status indicators.
- PURCHASING_AGENT_ID, SUGGESTED_BUYER_ID, RESEARCH_AGENT_ID — the buyer and agent assignments supporting workflow routing and workload analysis.
- DESTINATION_TYPE_CODE, DESTINATION_ORGANIZATION_ID, DESTINATION_SUBINVENTORY — the delivery destination used by Inventory and Work in Process consumers.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include secured requisition reporting, identifying lines generated from a parent line, and building buyer workload extracts. A representative query returning lines that descend from a given parent requisition line is:
- SELECT requisition_line_id, requisition_header_id, parent_req_line_id, line_num, quantity, preparer_id FROM po_owned_requisition_lines WHERE parent_req_line_id = :p_parent_req_line_id;
To list all currently open, uncancelled lines for a preparer:
- SELECT requisition_header_id, requisition_line_id, line_num, item_description, quantity FROM po_owned_requisition_lines WHERE preparer_id = :p_preparer_id AND cancel_flag = 'N' ORDER BY requisition_header_id, line_num;
Because the view enforces ownership, results are automatically restricted to requisitions the session user may access, making it suitable for embedded LOVs, BI Publisher datasets, and custom concurrent programs without additional row-level predicates.
-
View: PO_OWNED_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_OWNED_REQUISITION_LINES, object_name:PO_OWNED_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: Security view for owned requisition lines , implementation_dba_data: APPS.PO_OWNED_REQUISITION_LINES ,
-
View: PO_OWNED_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_OWNED_REQUISITION_LINES, object_name:PO_OWNED_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: Security view for owned requisition lines , implementation_dba_data: APPS.PO_OWNED_REQUISITION_LINES ,
-
View: PO_REQUISITION_LINES_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PO_REQUISITION_LINES_ALL_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PO_REQUISITION_LINES_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PO_REQUISITION_LINES_ALL_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PO_REQ_LINES_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_LINES_TRX_V, object_name:PO_REQ_LINES_TRX_V, status:VALID, product: PO - Purchasing , description: Requisition Lines View. , implementation_dba_data: APPS.PO_REQ_LINES_TRX_V ,
-
View: PO_REQUISITION_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_V, object_name:PO_REQUISITION_LINES_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_LINES_V ,
-
View: PO_REQUISITION_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_V, object_name:PO_REQUISITION_LINES_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_LINES_V ,
-
View: PO_REQUISITION_LINES_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_INQ_V, object_name:PO_REQUISITION_LINES_INQ_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_LINES_INQ_V ,
-
View: PO_REQUISITION_LINES_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_INQ_V, object_name:PO_REQUISITION_LINES_INQ_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_LINES_INQ_V ,