Search Results deliver_to_org_id
Overview
APPS.POR_REQUESTER_LOV_V is a seeded Oracle E-Business Suite view owned by the APPS schema and shipped as part of the ICX (Oracle iProcurement) product. Its stated purpose in the ETRM repository is to serve as a "List of Values for Requesters." In practice, the view supplies the row source behind requester selection fields in the iProcurement and Purchasing requisition flows, returning the set of employees who may be designated as requesters together with the descriptive and organizational attributes those pages need to render the LOV and default downstream values.
Because it is a view rather than a table, POR_REQUESTER_LOV_V holds no data of its own. It projects live information from HR and FND at query time, and its result set is deliberately scoped to the currently connected user. The view is relevant to reporting and integration work chiefly as a convenience access point to requester attributes — particularly the deliver-to organization — without requiring custom joins across HR_EMPLOYEES_CURRENT_V, FND_USER, and the financials system parameters.
Underlying Base Objects
The documented base objects underlying the view are:
HR_EMPLOYEES_CURRENT_V(VIEW) — the primary source of requester name, email, employee number, employee ID, default code combination, location, organization, and business group.FND_USER(SYNONYM) — joined onEMPLOYEE_IDto link the application user to the HR person record.FINANCIALS_SYSTEM_PARAMETERS(SYNONYM) — source ofINVENTORY_ORGANIZATION_ID, aliased in the view asDELIVER_TO_ORG_ID.FND_GLOBALandFND_PROFILE(PACKAGEs) — supply the current user ID and evaluate theICX_REQ_OVERRIDE_REQUESTOR_CODEprofile option, which drives the UNION ALL branches that determine which requesters are visible.HR_GENERAL,HR_PERSON_NAME, andHR_SECURITY(PACKAGEs) — invoked by the HR employee view to apply name formatting and security restrictions.HR_LOCATIONS_ALL,HR_LOCATIONS_ALL_TL(SYNONYMs) — location lookups referenced by the HR view.
The view text is built as a UNION ALL across multiple branches; each branch shares the same projection list but applies a different predicate against ICX_REQ_OVERRIDE_REQUESTOR_CODE (NO, ORG, and ALL), governing whether the requester is restricted to the signed-on user or expanded to an organization or the entire population.
Key Columns
USER_ID— FND_USER identifier of the requester; the typical join key back to requisition data.FULL_NAME,EMAIL_ADDRESS,EMPLOYEE_NUM,EMPLOYEE_ID— descriptive requester attributes.DEFAULT_CODE_COMBINATION_ID— default charge account associated with the employee.LOCATION_ID,ORGANIZATION_ID,BUSINESS_GROUP_ID— HR location and organization context; the view restricts rows whereLOCATION_ID IS NULL.EXPENSE_CHECK_ADDRESS_FLAG— expense destination handling indicator.DELIVER_TO_ORG_ID— exposed fromFINANCIALS_SYSTEM_PARAMETERS.INVENTORY_ORGANIZATION_ID; this is the column most commonly searched by users querying this view.
Common Use Cases and Queries
Typical uses include validating requester LOV contents, resolving the default deliver-to inventory organization for a requester, and joining requisition headers to requester names for reporting. Because the view is filtered by FND_GLOBAL.USER_ID, query results outside a session context may be restricted; testing in a specific user session or removing the security predicate in a custom query is often necessary.
Sample query to list requesters and their deliver-to organization:
SELECT user_id, full_name, employee_num, organization_id, deliver_to_org_idFROM apps.por_requester_lov_vORDER BY full_name;
Join to requisition headers for requester reporting:
SELECT prh.segment1, prh.preparer_id, l.full_name, l.deliver_to_org_idFROM po_requisition_headers_all prh, apps.por_requester_lov_v lWHERE prh.preparer_id = l.user_id;
Always reference the view with the APPS schema prefix and confirm the effective profile setting, since ICX_REQ_OVERRIDE_REQUESTOR_CODE materially changes which requesters are returned.
-
View: POR_REQUESTER_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_REQUESTER_LOV_V, object_name:POR_REQUESTER_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: List of Values for Requesters , implementation_dba_data: APPS.POR_REQUESTER_LOV_V ,
-
VIEW: APPS.POR_REQUESTER_LOV_V
12.1.1
-
View: POR_REQUESTER_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_REQUESTER_LOV_V, object_name:POR_REQUESTER_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: List of Values for Requesters , implementation_dba_data: APPS.POR_REQUESTER_LOV_V ,
-
VIEW: APPS.POR_REQUESTER_LOV_V
12.2.2
-
View: POR_LOCATION_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_LOCATION_LOV_V, object_name:POR_LOCATION_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: List of Values for Locations , implementation_dba_data: APPS.POR_LOCATION_LOV_V ,
-
VIEW: APPS.POR_LOCATION_LOV_V
12.1.1
-
View: POR_LOCATION_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_LOCATION_LOV_V, object_name:POR_LOCATION_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: List of Values for Locations , implementation_dba_data: APPS.POR_LOCATION_LOV_V ,
-
VIEW: APPS.POR_LOCATION_LOV_V
12.2.2
-
VIEW: WSH.WSH_CC_TRANS_HEADERS#
12.2.2
-
VIEW: WSH.WSH_CC_TRANS_LINES#
12.2.2
-
View: POR_RCV_REQ_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_LOV_V, object_name:POR_RCV_REQ_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: The List of Value of Requester in Receive Expanded Search , implementation_dba_data: APPS.POR_RCV_REQ_LOV_V ,
-
VIEW: APPS.POR_RCV_REQ_LOV_V
12.2.2
-
VIEW: APPS.POR_LOCATION_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_LOCATION_LOV_V, object_name:POR_LOCATION_LOV_V, status:VALID,
-
View: POR_RCV_REQ_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_LOV_V, object_name:POR_RCV_REQ_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: The List of Value of Requester in Receive Expanded Search , implementation_dba_data: APPS.POR_RCV_REQ_LOV_V ,
-
VIEW: APPS.POR_RCV_REQ_LOV_V
12.1.1
-
VIEW: APPS.POR_LOCATION_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_LOCATION_LOV_V, object_name:POR_LOCATION_LOV_V, status:VALID,
-
VIEW: APPS.POR_RCV_REQ_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_LOV_V, object_name:POR_RCV_REQ_LOV_V, status:VALID,
-
VIEW: APPS.POR_REQUESTER_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_REQUESTER_LOV_V, object_name:POR_REQUESTER_LOV_V, status:VALID,
-
VIEW: APPS.POR_REQUESTER_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_REQUESTER_LOV_V, object_name:POR_REQUESTER_LOV_V, status:VALID,
-
VIEW: APPS.OE_AK_SOLD_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID,
-
VIEW: APPS.POR_RCV_REQ_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_LOV_V, object_name:POR_RCV_REQ_LOV_V, status:VALID,
-
VIEW: APPS.OE_BLKTPRT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKTPRT_LINES_V, object_name:OE_BLKTPRT_LINES_V, status:VALID,
-
VIEW: APPS.OE_BLKTPRT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKTPRT_LINES_V, object_name:OE_BLKTPRT_LINES_V, status:VALID,
-
VIEW: APPS.WSH_OE_LINES_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OE_LINES_V1, object_name:WSH_OE_LINES_V1, status:VALID,
-
VIEW: APPS.WSH_OE_LINES_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OE_LINES_V1, object_name:WSH_OE_LINES_V1, status:VALID,
-
VIEW: APPS.WSH_OE_LINES_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OE_LINES_V2, object_name:WSH_OE_LINES_V2, status:VALID,
-
VIEW: APPS.WSH_OE_LINES_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OE_LINES_V2, object_name:WSH_OE_LINES_V2, status:VALID,
-
View: OE_CRM_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
VIEW: ONT.OE_BLANKET_HEADERS_ALL#
12.2.2
-
VIEW: APPS.OE_AK_SOLD_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID,
-
VIEW: APPS.OE_CRM_ORDER_HEADERS_V
12.2.2
-
VIEW: APPS.OE_CRM_ORDER_HEADERS_V
12.1.1
-
VIEW: ONT.OE_ORDER_HEADER_HISTORY#
12.2.2
-
VIEW: APPS.ASO_I_OE_ORDER_HEADERS_V
12.2.2
-
VIEW: ONT.OE_ORDER_HEADERS_ALL#
12.2.2
-
VIEW: APPS.ASO_I_OE_ORDER_HEADERS_V
12.1.1
-
View: ASO_I_OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_HEADERS_V, object_name:ASO_I_OE_ORDER_HEADERS_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_HEADERS_V ,
-
View: ASO_I_OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_HEADERS_V, object_name:ASO_I_OE_ORDER_HEADERS_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_HEADERS_V ,
-
APPS.OE_CUST_MERGE_DATA_FIX SQL Statements
12.1.1
-
APPS.OE_CUST_MERGE_DATA_FIX SQL Statements
12.2.2
-
VIEW: APPS.OE_PC_VTMPLT_COLS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:OE_PC_VTMPLT_COLS_DFV, status:VALID,
-
VIEW: APPS.OE_PRN_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID,
-
VIEW: APPS.OE_PRN_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID,
-
View: WSH_OE_LINES_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OE_LINES_V2, object_name:WSH_OE_LINES_V2, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OE_LINES_V2 ,
-
VIEW: ONT.OE_BLANKET_HEADERS_HIST#
12.2.2
-
PACKAGE BODY: APPS.GML_OM_MIG_VALIDATE_PKG
12.1.1
-
PACKAGE BODY: APPS.GML_OM_MIG_VALIDATE_PKG
12.2.2
-
View: OE_AK_SOLD_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SOLD_TO_ORGS_V ,
-
View: WSH_OE_LINES_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OE_LINES_V2, object_name:WSH_OE_LINES_V2, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OE_LINES_V2 ,