Search Results approved_date




Overview

OKL_VP_CHANGE_REQUESTS_V is an entity view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It belongs to the OKL product family, Oracle Lease and Finance Management. The view is documented as the entity view for the base table OKL_VP_CHANGE_REQUESTS, meaning it serves as a controlled read interface over the change request data stored in that table. The prefix VP indicates that the underlying table is maintained by the Leasing and Finance Management application's versioning and pricing infrastructure, where change requests capture modifications to contracts or related financial constructs that require tracking through a lifecycle of request, approval, effectivity, and application.

The view exposes one row per change request record and preserves the ROWID of the underlying row through the aliased column ROW_ID. This makes it usable not only for reporting but also for direct row identification in integration code. The view exists in the standard EBS APPS schema, so it is accessible to any responsibility or concurrent program whose database user has been granted privileges on the APPS synonym. Its principal consumers are custom reports, conversion and interface programs, and extensions that must inspect or react to change request state without querying the base table directly.

Underlying Base Objects

The view text is a straightforward single-table projection over OKL_VP_CHANGE_REQUESTS, aliased VCR in the defining query. No joins, unions, or aggregations are present. The documented base object in the 12.2.2 metadata is OKL_VP_CHANGE_REQUESTS, exposed to the APPS schema through a synonym. Consequently, the view inherits the table's column set without transformation, and there is no filtering or derived logic that would exclude rows. All standard EBS audit columns present on the base table are carried through unchanged.

Key Columns

Common Use Cases and Queries

Typical usage includes monitoring change requests awaiting approval, reporting applied changes by type, and feeding downstream interfaces. A representative query filtering on the change type is:

SELECT change_request_number, change_type_code, status_code, request_date, approved_date, applied_date FROM apps.okl_vp_change_requests_v WHERE change_type_code = :p_change_type AND status_code = 'APPLIED' ORDER BY applied_date DESC;

Because the view is a pass-through projection, it can also be used to resolve the base row ID for updates performed through the entity: SELECT row_id, id FROM apps.okl_vp_change_requests_v WHERE change_request_number = :p_number. Cycle-time reporting compares request_date to approved_date or applied_date, while audit queries reconcile created_by and last_updated_by against the concurrent request columns. Developers should treat the view as read-oriented and direct DML to the base table through supported APIs.