Search Results pa_task_inv_methods_lov_v
Overview
The view APPS.PA_TASK_INV_METHODS_LOV_V is a Projects (PA) module database object in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to display all invoice methods available for use in the Projects application. The view exists primarily to support list-of-values (LOV) and lookup requirements, presenting a curated, read-only list of invoice method codes and their human-readable meanings that can be reused across forms, reports, and integrations without requiring callers to query the underlying lookup table directly.
Because the object name carries the _LOV_V suffix, it is intended as a lookup source rather than as a transactional or master data view. It returns static, reference-style data that describes the permissible invoice methods defined in the EBS lookup framework. As a view that selects only from PA_LOOKUPS, it adds no new business logic and imposes no filtering beyond the constraint on lookup type. Its role in reporting and integration is therefore one of convenience and standardization: it exposes the authoritative invoice method list in a stable, named form that application components and custom SQL can reference idempotently.
Underlying Base Objects
The view is defined over a single documented base object: PA_LOOKUPS, itself a view that resolves the standard Oracle Applications lookup mechanism. The documented view text is as follows:
SELECT LKP1.LOOKUP_CODE INV_MTHD_CODE, LKP1.MEANING INVOICE_METHOD, LKP1.DESCRIPTION DESCRIPTION FROM PA_LOOKUPS LKP1 WHERE LKP1.LOOKUP_TYPE LIKE 'INVOICE_METHOD'
Interpreted literally, the view filters PA_LOOKUPS on rows where LOOKUP_TYPE matches the pattern INVOICE_METHOD. The use of LIKE rather than = means the predicate matches any lookup type beginning with the string INVOICE_METHOD, which can broaden the result set beyond a single exact lookup type. The view retains only three source columns and renames them for consumer clarity. No joins, aggregations, or outer query constructs are applied, so the view remains a thin projection of lookup data with a single-column filter, keeping performance characteristics essentially identical to querying PA_LOOKUPS with the same predicate.
Key Columns
The ETRM metadata documents both the view text column aliases and a corresponding column listing. The principal columns exposed are:
- INVOICE_METHOD_CODE — the code for the invoice method, mapped from the lookup code. In the view text this alias is expressed as
INV_MTHD_CODE. - INVOICE_METHOD — the descriptive meaning of the invoice method, sourced from the lookup meaning and intended for display in list-of-values and reports.
- DESCRIPTION — the longer descriptive text associated with the lookup entry.
The three columns correspond directly to the lookup code, meaning, and description attributes of the referenced lookup rows, providing both machine-consumable codes and presentation-oriented labels.
Common Use Cases and Queries
Typical usage centers on populating selection lists, validating incoming invoice method values, and joining descriptive meanings onto reporting queries. A representative query retrieves the available invoice methods:
SELECT invoice_method_code, invoice_method, description FROM apps.pa_task_inv_methods_lov_v ORDER BY invoice_method;
The view can also be joined to transactional data by matching invoice_method_code to a stored code, allowing reports to display the descriptive invoice method alongside project or task records. Because the data originates from lookup maintenance, the content is controlled through the standard lookup administration screens, and any changes made there are reflected immediately since the view holds no materialized data. Consumers should treat the result set as reference data only; it carries no project, task, or organization context, and it is not suitable for transaction-level reporting. When embedding the view in custom code, note the LIKE predicate in the definition, as it may return lookup types sharing the INVOICE_METHOD prefix. In all cases, access is expected to occur through the APPS schema.
-
View: PA_TASK_INV_METHODS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_INV_METHODS_LOV_V, object_name:PA_TASK_INV_METHODS_LOV_V, status:VALID, product: PA - Projects , description: This view displays all the invoice methods , implementation_dba_data: APPS.PA_TASK_INV_METHODS_LOV_V ,
-
View: PA_TASK_INV_METHODS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_INV_METHODS_LOV_V, object_name:PA_TASK_INV_METHODS_LOV_V, status:VALID, product: PA - Projects , description: This view displays all the invoice methods , implementation_dba_data: APPS.PA_TASK_INV_METHODS_LOV_V ,