Search Results okr_prop_types_cv




Overview

OKR_PROP_TYPES_CV is a correlation view (the "_CV" suffix) within the Oracle EBS OKR — Contracts for Rights module. The OKR module supports the licensing and management of intellectual property rights, and this view exposes the property type definitions used to classify intellectual property (IP) records throughout the application. Its primary role is to resolve and present the descriptive, language-dependent attributes of property types alongside their operational attributes, joined against the current user's language setting.

The view is documented as obsolete and is not implemented in the referenced database, meaning it should be treated as a legacy or seed-data artifact rather than an actively supported object. Nevertheless, it remains a useful reference point for understanding how OKR property types were modeled and reported on, particularly for organizations upgrading from earlier OKR releases.

Underlying Base Objects

The view is defined over two base tables in a standard Oracle EBS multilingual (TL) pattern:

  • OKR_PROP_TYPES_B — the base table holding language-independent property type data (all columns aliased as PTYB).
  • OKR_PROP_TYPES_TL — the translation table holding the language-dependent meanings and descriptions (aliased as PTYT).

The two tables are joined on the IP_TYPE key, with the translation restricted by PTYT.LANGUAGE = USERENV('LANG'), ensuring only the meaning and description for the session's language are returned. The view also invokes the OKR_UTIL_PUB.GET_LU_MEANING lookup utility to derive a translated meaning for the basic property type, referencing the lookup type OKR_BASE_PROPERTY_TYPES. No other referenced base objects are documented.

Key Columns

Common Use Cases and Queries

Typical uses include validating property type lookup values, joining property types to licensed IP records, and building multilingual reports where the correct translated meaning must appear. A representative query follows:

  • SELECT ip_type, ip_type_meaning, basic_ip_type_meaning FROM okr_prop_types_cv WHERE NVL(end_date_active, SYSDATE+1) > SYSDATE; — retrieves active property types with translated meanings.
  • SELECT ip_type, description FROM okr_prop_types_cv WHERE ip_type_meaning LIKE 'Audio%'; — searches property types by meaning.

Because the view is obsolete and not implemented in the current database, implementations should confirm its availability before use and consider a direct join of OKR_PROP_TYPES_B and OKR_PROP_TYPES_TL as a substitute.