Search Results po_requisition_lines_all
Overview
The PO_REQUISITION_LINES_ALL table is a core transactional entity within Oracle E-Business Suite Purchasing (PO) module for versions 12.1.1 and 12.2.2. It stores the detailed line-level information for every purchase requisition created in the system. Each record in this table represents a specific item or service requested, linking to its parent requisition header. As a multi-organization table (indicated by the '_ALL' suffix), it contains data for all operating units, with access typically controlled by a security profile. This table is fundamental to the requisitioning process, capturing the material, quantity, pricing, and sourcing details that are later used for purchase order creation, sourcing, and requisition reporting.
Key Information Stored
The table's primary key is REQUISITION_LINE_ID, which uniquely identifies each requisition line. Critical foreign keys define its relationships within the application. REQUISITION_HEADER_ID links the line to its parent document in PO_REQUISITION_HEADERS_ALL. Key descriptive and transactional columns include ITEM_ID, ITEM_DESCRIPTION, QUANTITY, UNIT_PRICE, and LINE_TYPE_ID (linking to PO_LINE_TYPES_B). Sourcing and supplier information is captured via SUGGESTED_BUYER_ID, VENDOR_ID, VENDOR_SITE_ID, and BLANKET_PO_HEADER_ID. The table also integrates with other EBS modules through columns like CATEGORY_ID (Inventory), WIP_ENTITY_ID (Work in Process), TAX_CODE_ID (Payables), and CURRENCY_CODE. The PARENT_REQ_LINE_ID supports complex requisition structures.
Common Use Cases and Queries
This table is central for requisition inquiry, audit reporting, and data extraction for interfaces. Common scenarios include tracking requisition status, analyzing spend by category or requestor, and identifying lines sourced from blanket agreements. A typical query joins to the header table and relevant lookup tables:
- Requisition Line Detail Report: SELECT prl.requisition_line_id, prh.segment1 req_num, prl.line_num, prl.item_description, prl.quantity, prl.unit_price, prl.need_by_date FROM po_requisition_lines_all prl, po_requisition_headers_all prh WHERE prl.requisition_header_id = prh.requisition_header_id AND prh.org_id = :p_org_id;
- Lines Linked to a Blanket Purchase Order: SELECT * FROM po_requisition_lines_all WHERE blanket_po_header_id IS NOT NULL;
- Requisition Analysis by Category: SELECT mc.segment1 category, SUM(prl.quantity * prl.unit_price) total_amount FROM po_requisition_lines_all prl, mtl_categories_b mc WHERE prl.category_id = mc.category_id GROUP BY mc.segment1;
Related Objects
PO_REQUISITION_LINES_ALL has extensive relationships, as shown in the metadata. Its primary parent is PO_REQUISITION_HEADERS_ALL. It is a key source for downstream procurement processes, referenced by PO_LINE_LOCATIONS_ALL when requisition lines are converted to purchase order shipments. Key foreign key dependencies include PO_LINE_TYPES_B, PO_AGENTS, MTL_CATEGORIES_B, PO_VENDORS, and FND_CURRENCIES. It is also referenced by other modules, such as AHL_OSP_ORDER_LINES (Complex Maintenance) and JAI_PO_REQ_LINES (Localizations), demonstrating its integration scope. For programmatic access, developers typically use the PO_REQUISITIONS_PKG or PO_REQ_LINES_PKG APIs rather than direct DML.
-
Table: PO_REQUISITION_LINES_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_LINES_ALL, object_name:PO_REQUISITION_LINES_ALL, status:VALID, product: PO - Purchasing , description: Requisition lines , implementation_dba_data: PO.PO_REQUISITION_LINES_ALL ,
-
Table: PO_REQUISITION_LINES_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_LINES_ALL, object_name:PO_REQUISITION_LINES_ALL, status:VALID, product: PO - Purchasing , description: Requisition lines , implementation_dba_data: PO.PO_REQUISITION_LINES_ALL ,
-
Table: PO_REQ_LINES_GT
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_LINES_GT, object_name:PO_REQ_LINES_GT, status:VALID, product: PO - Purchasing , description: For Internal Use Only: This table is global temporary table based on po_requisition_lines_all table. It is used for internal processing of data for PO Approval Submission Checks. , implementation_dba_data: PO.PO_REQ_LINES_GT ,
-
Table: PO_HAZARD_CLASSES_B
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_HAZARD_CLASSES_B, object_name:PO_HAZARD_CLASSES_B, status:VALID, product: PO - Purchasing , description: Hazardous classes , implementation_dba_data: PO.PO_HAZARD_CLASSES_B ,
-
Table: PO_UN_NUMBERS_B
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_UN_NUMBERS_B, object_name:PO_UN_NUMBERS_B, status:VALID, product: PO - Purchasing , description: United Nations numbers , implementation_dba_data: PO.PO_UN_NUMBERS_B ,
-
Table: PO_AGENTS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_AGENTS, object_name:PO_AGENTS, status:VALID, product: PO - Purchasing , description: Buyers table , implementation_dba_data: PO.PO_AGENTS ,
-
Table: PO_UN_NUMBERS_B
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_UN_NUMBERS_B, object_name:PO_UN_NUMBERS_B, status:VALID, product: PO - Purchasing , description: United Nations numbers , implementation_dba_data: PO.PO_UN_NUMBERS_B ,
-
Table: PO_LINE_TYPES_B
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINE_TYPES_B, object_name:PO_LINE_TYPES_B, status:VALID, product: PO - Purchasing , description: Line types , implementation_dba_data: PO.PO_LINE_TYPES_B ,
-
Table: PO_HAZARD_CLASSES_B
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_HAZARD_CLASSES_B, object_name:PO_HAZARD_CLASSES_B, status:VALID, product: PO - Purchasing , description: Hazardous classes , implementation_dba_data: PO.PO_HAZARD_CLASSES_B ,
-
Table: PO_VENDOR_CONTACTS
12.1.1
product: PO - Purchasing , description: Supplier contacts , implementation_dba_data: Not implemented in this database ,
-
Table: PO_AGENTS
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_AGENTS, object_name:PO_AGENTS, status:VALID, product: PO - Purchasing , description: Buyers table , implementation_dba_data: PO.PO_AGENTS ,
-
Table: RCV_SUPPLY
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_SUPPLY, object_name:RCV_SUPPLY, status:VALID, product: PO - Purchasing , description: Summary information about items in receiving/inspection , implementation_dba_data: PO.RCV_SUPPLY ,
-
Table: PO_LINE_TYPES_B
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINE_TYPES_B, object_name:PO_LINE_TYPES_B, status:VALID, product: PO - Purchasing , description: Line types , implementation_dba_data: PO.PO_LINE_TYPES_B ,
-
Table: RCV_SUPPLY
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_SUPPLY, object_name:RCV_SUPPLY, status:VALID, product: PO - Purchasing , description: Summary information about items in receiving/inspection , implementation_dba_data: PO.RCV_SUPPLY ,
-
Table: PO_VENDOR_CONTACTS
12.2.2
product: PO - Purchasing , description: Supplier contacts , implementation_dba_data: Not implemented in this database ,
-
Table: PO_REQUISITION_HEADERS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_HEADERS_ALL, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID, product: PO - Purchasing , description: Requisition headers , implementation_dba_data: PO.PO_REQUISITION_HEADERS_ALL ,
-
View: PO_REQS_IN_TRANSIT_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQS_IN_TRANSIT_ALL_V, object_name:PO_REQS_IN_TRANSIT_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQS_IN_TRANSIT_ALL_V ,
-
Table: PO_REQ_DISTRIBUTIONS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_ALL, object_name:PO_REQ_DISTRIBUTIONS_ALL, status:VALID, product: PO - Purchasing , description: Requisition distributions , implementation_dba_data: PO.PO_REQ_DISTRIBUTIONS_ALL ,
-
View: PO_REQS_IN_TRANSIT_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQS_IN_TRANSIT_ALL_V, object_name:PO_REQS_IN_TRANSIT_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQS_IN_TRANSIT_ALL_V ,
-
Table: PO_REQUISITION_HEADERS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_HEADERS_ALL, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID, product: PO - Purchasing , description: Requisition headers , implementation_dba_data: PO.PO_REQUISITION_HEADERS_ALL ,
-
Table: PO_REQ_DISTRIBUTIONS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_ALL, object_name:PO_REQ_DISTRIBUTIONS_ALL, status:VALID, product: PO - Purchasing , description: Requisition distributions , implementation_dba_data: PO.PO_REQ_DISTRIBUTIONS_ALL ,
-
View: PO_REQ_LINES_IN_POOL_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_LINES_IN_POOL_SEC_V, object_name:PO_REQ_LINES_IN_POOL_SEC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_REQ_LINES_IN_POOL_SEC_V ,
-
Table: RCV_TRANSACTIONS_INTERFACE
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_TRANSACTIONS_INTERFACE, object_name:RCV_TRANSACTIONS_INTERFACE, status:VALID, product: PO - Purchasing , description: Receiving transactions interface table , implementation_dba_data: PO.RCV_TRANSACTIONS_INTERFACE ,
-
View: PO_REQUISITION_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_HEADERS_ALL_V, object_name:PO_REQUISITION_HEADERS_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_HEADERS_ALL_V ,
-
Table: RCV_TRANSACTIONS_INTERFACE
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_TRANSACTIONS_INTERFACE, object_name:RCV_TRANSACTIONS_INTERFACE, status:VALID, product: PO - Purchasing , description: Receiving transactions interface table , implementation_dba_data: PO.RCV_TRANSACTIONS_INTERFACE ,
-
View: PO_REQS_IN_POOL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQS_IN_POOL_V, object_name:PO_REQS_IN_POOL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQS_IN_POOL_V ,
-
View: PO_REQ_LINES_IN_POOL_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_LINES_IN_POOL_SEC_V, object_name:PO_REQ_LINES_IN_POOL_SEC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_REQ_LINES_IN_POOL_SEC_V ,
-
View: PO_REQS_IN_POOL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQS_IN_POOL_V, object_name:PO_REQS_IN_POOL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQS_IN_POOL_V ,
-
View: PO_REQ_SUPPLY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_SUPPLY_VIEW, object_name:PO_REQ_SUPPLY_VIEW, status:VALID, product: PO - Purchasing , description: Requisition supply , implementation_dba_data: APPS.PO_REQ_SUPPLY_VIEW ,
-
View: PO_REQ_SUPPLY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_SUPPLY_VIEW, object_name:PO_REQ_SUPPLY_VIEW, status:VALID, product: PO - Purchasing , description: Requisition supply , implementation_dba_data: APPS.PO_REQ_SUPPLY_VIEW ,
-
View: PO_REQUISITION_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_HEADERS_ALL_V, object_name:PO_REQUISITION_HEADERS_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_HEADERS_ALL_V ,
-
View: POBV_REQUISITION_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_DISTRIBUTIONS, object_name:POBV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_DISTRIBUTIONS ,
-
Table: PO_REQUISITIONS_INTERFACE_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITIONS_INTERFACE_ALL, object_name:PO_REQUISITIONS_INTERFACE_ALL, status:VALID, product: PO - Purchasing , description: Requisition Import interface table , implementation_dba_data: PO.PO_REQUISITIONS_INTERFACE_ALL ,
-
View: POBV_REQUISITION_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_DISTRIBUTIONS, object_name:POBV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_DISTRIBUTIONS ,
-
Table: PO_REQUISITIONS_INTERFACE_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITIONS_INTERFACE_ALL, object_name:PO_REQUISITIONS_INTERFACE_ALL, status:VALID, product: PO - Purchasing , description: Requisition Import interface table , implementation_dba_data: PO.PO_REQUISITIONS_INTERFACE_ALL ,
-
Table: RCV_SHIPMENT_LINES
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_SHIPMENT_LINES, object_name:RCV_SHIPMENT_LINES, status:VALID, product: PO - Purchasing , description: Receiving shipment line information , implementation_dba_data: PO.RCV_SHIPMENT_LINES ,
-
Table: RCV_SHIPMENT_LINES
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_SHIPMENT_LINES, object_name:RCV_SHIPMENT_LINES, status:VALID, product: PO - Purchasing , description: Receiving shipment line information , implementation_dba_data: PO.RCV_SHIPMENT_LINES ,
-
View: PO_REQ_LINES_IN_POOL_SRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_LINES_IN_POOL_SRC_V, object_name:PO_REQ_LINES_IN_POOL_SRC_V, status:VALID, product: PO - Purchasing , description: This view shows all the requisition lines which are available in the pool from Oracle sourcing point of view. That is the where clause does not check for reqs_in_pool_flag='Y'. , implementation_dba_data: APPS.PO_REQ_LINES_IN_POOL_SRC_V ,
-
View: PO_REQ_LINES_IN_POOL_SRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_LINES_IN_POOL_SRC_V, object_name:PO_REQ_LINES_IN_POOL_SRC_V, status:VALID, product: PO - Purchasing , description: This view shows all the requisition lines which are available in the pool from Oracle sourcing point of view. That is the where clause does not check for reqs_in_pool_flag='Y'. , implementation_dba_data: APPS.PO_REQ_LINES_IN_POOL_SRC_V ,
-
View: PO_SHIP_RCV_SUPPLY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SHIP_RCV_SUPPLY_VIEW, object_name:PO_SHIP_RCV_SUPPLY_VIEW, status:VALID, product: PO - Purchasing , description: Shipment receipts supply , implementation_dba_data: APPS.PO_SHIP_RCV_SUPPLY_VIEW ,
-
View: PO_SHIP_RCV_SUPPLY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SHIP_RCV_SUPPLY_VIEW, object_name:PO_SHIP_RCV_SUPPLY_VIEW, status:VALID, product: PO - Purchasing , description: Shipment receipts supply , implementation_dba_data: APPS.PO_SHIP_RCV_SUPPLY_VIEW ,
-
Table: PO_LINE_LOCATIONS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINE_LOCATIONS_ALL, object_name:PO_LINE_LOCATIONS_ALL, status:VALID, product: PO - Purchasing , description: Document shipment schedules (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_LINE_LOCATIONS_ALL ,
-
Table: PO_LINE_LOCATIONS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINE_LOCATIONS_ALL, object_name:PO_LINE_LOCATIONS_ALL, status:VALID, product: PO - Purchasing , description: Document shipment schedules (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_LINE_LOCATIONS_ALL ,
-
View: POFV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,
-
View: POFV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,
-
View: POFV_REQUISITION_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_DISTRIBUTIONS, object_name:POFV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_DISTRIBUTIONS ,
-
View: POFV_REQUISITION_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_DISTRIBUTIONS, object_name:POFV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_DISTRIBUTIONS ,
-
Table: PO_VENDOR_SITES_ALL
12.2.2
product: PO - Purchasing , description: Supplier sites , implementation_dba_data: Not implemented in this database ,
-
Table: PO_VENDOR_SITES_ALL
12.1.1
product: PO - Purchasing , description: Supplier sites , implementation_dba_data: Not implemented in this database ,
-
View: POS_RCV_REJECTED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_REJECTED_ITEMS_V, object_name:POS_RCV_REJECTED_ITEMS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_REJECTED_ITEMS_V ,