Search Results request_status
Overview
The APPS.CLN_PO_CHANGE_RESPONSE_LINE_V view is a procurement-side reporting and integration object within Oracle E-Business Suite, owned by the APPS schema. It exposes supplier responses to purchase order change requests at the document line level, aggregating status information captured against change request records. The view is particularly relevant to the Oracle Supplier Network (OSN) and CLN (Collaboration) product family, where purchase order acknowledgements, change acknowledgements, and response reasons are exchanged between buying organizations and suppliers.
The view serves as a consolidated presentation layer over change request response data. Rather than requiring callers to navigate the transactional PO_CHANGE_REQUESTS table directly, the view pre-aggregates line-level and shipment-level responses into a single row per document line. This makes it suitable for reporting, workflow evaluation, and integration endpoints that need a compact view of supplier response status. Because the view filters by the current change request group identifier returned by CLN_PO_CHANGE_RESPONSE_PKG.Get_change_request_group_id, it is scoped to the active collaboration context rather than returning the entire historical set of change requests.
Underlying Base Objects
The view is defined over three documented references. The primary data source is PO_CHANGE_REQUESTS, accessed through a synonym, which stores the individual change request and response records, including request level, request status, response reason, and supplier line reference. The view restricts this table to records where REQUEST_LEVEL is either 'LINE' or 'SHIPMENT', and where the CHANGE_REQUEST_GROUP_ID matches the value returned by the packaged function.
The second referenced object is the package CLN_PO_CHANGE_RESPONSE_PKG, invoked in a scalar subquery against DUAL. This package supplies the change request group identifier that scopes the view to the current response cycle. The third reference, DUAL, is used only as the syntactic container for that function call. In ETRM 12.2.2, these references are documented as a package and two synonyms, indicating that the view depends on packaged state at query time.
Key Columns
DOCUMENT_LINE_ID— the grouping key and the PO document line identifier to which the aggregated response applies.REQUEST_STATUS— derived viaMAX(DECODE(REQUEST_LEVEL,'LINE',REQUEST_STATUS,NULL)), this returns the request status specifically recorded at the line level, or null when no line-level row exists.MIN_REQUEST_STATUS— computed asMIN(REQUEST_STATUS)across both line and shipment level rows, capturing the least favorable (alphabetically minimum) status within the group.RESPONSE_REASON— derived viaMAX(DECODE(REQUEST_LEVEL,'LINE',RESPONSE_REASON,NULL)), exposing the supplier's stated reason for the line-level response.SUPPLIER_LINE_REF— the maximum supplier-assigned line reference, useful for matching the buying organization's line to the supplier's own numbering.
The presence of both REQUEST_STATUS and MIN_REQUEST_STATUS allows consumers to distinguish between a line-specific status and the overall worst-case status when shipment-level rows also exist. This is a common pattern where a header or line may be acknowledged while an individual shipment schedule is rejected or changed.
Common Use Cases and Queries
A typical consumer queries this view to determine whether a given document line has been acknowledged, rejected, or changed by the supplier, and to retrieve the supplier's reason. The request_status column, being the term most often searched, is the principal filter attribute.
SELECT document_line_id,
request_status,
min_request_status,
response_reason,
supplier_line_ref
FROM apps.cln_po_change_response_line_v
WHERE document_line_id = :p_document_line_id;
Because the view is already scoped to the active change request group, no additional join to the package is required by the caller. A reporting query might aggregate response statuses to measure supplier responsiveness or identify lines awaiting acknowledgement:
SELECT request_status, COUNT(*)
FROM apps.cln_po_change_response_line_v
GROUP BY request_status;
Integration endpoints frequently select request_status, min_request_status, and response_reason in a single fetch to transform supplier responses into downstream workflow events. Users should note that the view's result set depends on CLN_PO_CHANGE_RESPONSE_PKG.Get_change_request_group_id returning a valid group identifier; if the package context has not been initialized in the session, the subquery returns null and the view yields no rows.
-
Lookup Type: REQUEST_STATUS
12.1.1
product: PER - Human Resources , meaning: REQUEST STATUS , description: Letter request status ,
-
Lookup Type: REQUEST_STATUS
12.2.2
product: PER - Human Resources , meaning: REQUEST STATUS , description: Letter request status ,
-
VIEW: APPS.CLN_PO_CHANGE_RESPONSE_LINE_V
12.2.2
-
VIEW: APPS.CLN_PO_CHANGE_RESPONSE_LINE_V
12.1.1
-
VIEW: PJI.PJI_BATCH_STATUS_420#
12.2.2
-
VIEW: PJI.PJI_MERGE_BATCH_STATUS#
12.2.2
-
VIEW: QP.QP_ARCH_CRITERIA_HEADERS#
12.2.2
-
VIEW: HR.PER_RI_RT_GEN#
12.2.2
-
View: CLN_PO_CHANGE_RESPONSE_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PO_CHANGE_RESPONSE_LINE_V, object_name:CLN_PO_CHANGE_RESPONSE_LINE_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: This view is used for mapping purposes in PIP-3A8Response , implementation_dba_data: APPS.CLN_PO_CHANGE_RESPONSE_LINE_V ,
-
View: CLN_PO_CHANGE_RESPONSE_LINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PO_CHANGE_RESPONSE_LINE_V, object_name:CLN_PO_CHANGE_RESPONSE_LINE_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: This view is used for mapping purposes in PIP-3A8Response , implementation_dba_data: APPS.CLN_PO_CHANGE_RESPONSE_LINE_V ,
-
VIEW: POS.POS_ACNT_ADDR_REQ#
12.2.2
-
VIEW: APPLSYS.FND_SVC_COMP_REQUESTS_H#
12.2.2
-
VIEW: POS.POS_CONT_ADDR_REQUESTS#
12.2.2
-
VIEW: POS.POS_BUS_CLASS_REQS#
12.2.2
-
VIEW: HR.PER_LETTER_REQUESTS#
12.2.2
-
VIEW: XDP.XDP_ADAPTER_ADMIN_REQS#
12.2.2
-
VIEW: POS.POS_OSN_REQUESTS#
12.2.2
-
VIEW: IGI.IGI_IMP_IAC_CONTROLS#
12.2.2
-
VIEW: XDP.XDP_ADAPTER_AUDIT#
12.2.2
-
VIEW: AZ.AZ_REQUESTS#
12.2.2
-
VIEW: POS.POS_ADDRESS_REQUESTS#
12.2.2
-
APPS.PO_CHG_REQUEST_PVT SQL Statements
12.1.1
-
APPS.PO_REQCHANGEREQUESTWF_PVT SQL Statements
12.1.1
-
VIEW: POS.POS_SUP_BANK_ACCOUNT_REQUESTS#
12.2.2
-
VIEW: POS.POS_CONTACT_REQUESTS#
12.2.2
-
APPS.POS_PROFILE_CHANGE_REQUEST_PKG SQL Statements
12.2.2
-
VIEW: POS.POS_PRODUCT_SERVICE_REQUESTS#
12.2.2
-
APPS.POS_PROFILE_CHANGE_REQUEST_PKG SQL Statements
12.1.1
-
VIEW: JTF.JTF_FM_STATUS_ALL#
12.2.2
-
APPS.PO_CHANGE_RESPONSE_PVT SQL Statements
12.1.1
-
APPS.PO_REQCHANGEREQUESTWF_PVT SQL Statements
12.2.2
-
VIEW: POS.POS_PRODUCT_SERVICE_INT#
12.2.2
-
APPS.PO_CHANGE_RESPONSE_PVT SQL Statements
12.2.2
-
VIEW: BOM.BOM_COPY_STRUCTURE_REQUEST#
12.2.2
-
VIEW: APPLSYS.FND_SOA_REQUEST#
12.2.2
-
VIEW: APPS.IGS_DA_PURGE_V
12.1.1
-
APPS.PO_CHG_REQUEST_PVT SQL Statements
12.2.2
-
VIEW: QPR.QPR_PN_REQUEST_HDRS_B#
12.2.2
-
View: OKL_CS_REQUESTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_REQUESTS_UV, object_name:OKL_CS_REQUESTS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_REQUESTS_UV ,
-
VIEW: PO.PO_CHANGE_REQUESTS#
12.2.2
-
VIEW: PJI.PJI_BATCH_STATUS_420#
12.2.2
owner:PJI, object_type:VIEW, object_name:PJI_BATCH_STATUS_420#, status:VALID,
-
TABLE: POS.POS_CONT_ADDR_REQUESTS
12.1.1
owner:POS, object_type:TABLE, object_name:POS_CONT_ADDR_REQUESTS, status:VALID,
-
APPS.POS_SCO_TOLERANCE_PVT SQL Statements
12.2.2
-
View: OKL_CS_EQUIP_EXCHANGES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_EQUIP_EXCHANGES_UV, object_name:OKL_CS_EQUIP_EXCHANGES_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_EQUIP_EXCHANGES_UV ,
-
View: CS_SR_FULFIL_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FULFIL_STATUS_V, object_name:CS_SR_FULFIL_STATUS_V, status:VALID, product: CS - Service , description: For a particular Source Object and Source Object Id, this View is used to retrieve the status of a submitted fulfillment request. , implementation_dba_data: APPS.CS_SR_FULFIL_STATUS_V ,
-
APPS.POS_SCO_TOLERANCE_PVT SQL Statements
12.1.1
-
VIEW: APPS.CS_SR_FULFIL_STATUS_V
12.1.1
-
View: IGS_DA_PURGE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_PURGE_V, object_name:IGS_DA_PURGE_V, status:VALID, product: IGS - Student System , description: This view is to give the user information into all the degree audit requests that were made and purged from the system. The information will be saved as each request has been purged. , implementation_dba_data: APPS.IGS_DA_PURGE_V ,
-
View: IGS_DA_PURGE_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is to give the user information into all the degree audit requests that were made and purged from the system. The information will be saved as each request has been purged. , implementation_dba_data: Not implemented in this database ,
-
APPS.PO_CHANGEORDERWF_PVT SQL Statements
12.1.1