Search Results response_description




Overview

ENG_CHANGE_ROUTE_PEOPLE_VL is a multilingual (VL) view owned by the APPS schema in Oracle E-Business Suite, belonging to the Engineering (ENG) product module. It exposes routed personnel records associated with Engineering Change Order (ECO) routing steps and, critically, resolves the user-facing RESPONSE_DESCRIPTION text for each assignee response. Because the underlying translation table stores descriptions per language, the view restricts rows to the session language via USERENV('LANG'), allowing Oracle Forms, OAF pages, and concurrent programs to display response text in the user's own language without additional joins. The view is documented as VALID in both 12.1.1 and 12.2.2 ETRM repositories, and the user's search term response_description maps directly to the column of that name exposed here.

Underlying Base Objects

The view is defined over two base objects, referenced in the ETRM metadata as synonyms: ENG_CHANGE_ROUTE_PEOPLE (the transactional route-people table, aliased ECRP) and ENG_CHANGE_ROUTE_PEOPLE_TL (the translation table, aliased ECRPTL). The join is on ROUTE_PEOPLE_ID, constrained by ECRPTL.LANGUAGE = USERENV('LANG'). The view therefore behaves as a denormalized combination: all routing, assignment, workflow, and audit attributes come from the base table, while RESPONSE_DESCRIPTION is drawn from the TL table for the current language. A ROWID from the base table is exposed as ROW_ID for locked-row update handling through the view.

Key Columns

Common Use Cases and Queries

Typical uses include ECO approval-status reporting, workflow response auditing, and integration extracts that need translated response text. Because RESPONSE_DESCRIPTION is language-aware, reports run under different sessions automatically surface the appropriate translation. A simple query listing responses for a given routing step:

SELECT erp.ROUTE_PEOPLE_ID,
       erp.STEP_ID,
       erp.ASSIGNEE_ID,
       erp.RESPONSE_DESCRIPTION,
       erp.RESPONSE_CODE,
       erp.RESPONSE_DATE
FROM   APPS.ENG_CHANGE_ROUTE_PEOPLE_VL erp
WHERE  erp.STEP_ID = :step_id
ORDER  BY erp.ROUTE_PEOPLE_ID;

To reconcile workflow notifications with recorded responses, select WF_NOTIFICATION_ID alongside RESPONSE_DESCRIPTION. For reassignment analysis, filter on ORIGINAL_ASSIGNEE_ID or PARENT_ROUTE_PEOPLE_ID. Because the view is not a key-preserved partition beyond ROW_ID, updates should target the base table unless the EBS form layer explicitly permits view-level DML.