Search Results okc_contact_role
Overview
APPS.OKL_CONTACT_ROLE_UV is a read-only Oracle E-Business Suite view that exposes contact role definitions for the Oracle Lease and Finance Management (OKL) and Oracle Contracts (OKC) modules. The "_UV" suffix identifies it as a user-facing validation view, typically consumed by Oracle Forms LOVs, concurrent programs, and custom reporting layers. In EBS 12.1.1 and 12.2.2 the view surfaces role codes maintained in the OKC_CONTACT_SOURCES table and decodes them into user-readable meanings via the OKL_ACCOUNTING_UTIL package.
The view's distinguishing behaviour is temporal filtering. Its WHERE clause restricts output to records where SYSDATE falls between START_DATE and END_DATE (or where END_DATE is null), which means only currently effective contact roles are returned. Because of this, the view behaves as an active-date snapshot rather than a full history listing.
Underlying Base Objects
The view is defined over two referenced objects documented in the ETRM repository:
- OKC_CONTACT_SOURCES (SYNONYM) — the primary source table holding contact role records, date-effective ranges, and classification columns such as CRO_CODE, JTOT_OBJECT_CODE, RLE_CODE, BUY_OR_SELL, and CONSTRAINED_YN.
- OKL_ACCOUNTING_UTIL (PACKAGE) — referenced through the function GET_LOOKUP_MEANING, which resolves the lookup meaning for the role code against the OKC_CONTACT_ROLE lookup type with the parameters (code, 510, 0).
Because the view joins a synonym to a PL/SQL function call, it is not a pure table projection; each row triggers a lookup invocation, which can affect cost when the view is queried at high cardinality.
Key Columns
- MEANING — the translated, user-readable description of the contact role, produced by OKL_ACCOUNTING_UTIL.GET_LOOKUP_MEANING against lookup type OKC_CONTACT_ROLE.
- LOOKUP_CODE — the underlying CRO_CODE value; the code stored in OKC_CONTACT_SOURCES that identifies the role.
- LOOKUP_TYPE — a literal value, always 'OKC_CONTACT_ROLE', indicating the lookup category used for translation.
- JTOT_OBJECT_CODE — the JTF object code that classifies which entity type the contact role applies to.
- RLE_CODE — the role code that ties the contact source record to the underlying role definition.
- BUY_OR_SELL — indicates whether the contact role is associated with a buying or selling party context.
- CONSTRAINED_YN — a Y/N flag showing whether the role is restricted or constrained for use.
Common Use Cases and Queries
The view is commonly used to populate LOVs, validate role codes entered by users, and drive reporting that requires current, date-effective contact role definitions. A typical listing query is:
SELECT MEANING, LOOKUP_CODE, JTOT_OBJECT_CODE, BUY_OR_SELL FROM APPS.OKL_CONTACT_ROLE_UV ORDER BY MEANING;SELECT LOOKUP_CODE, MEANING FROM APPS.OKL_CONTACT_ROLE_UV WHERE CONSTRAINED_YN = 'N';— to restrict output to unconstrained roles only.SELECT a.*, r.MEANING FROM OKC_CONTACT_SOURCES a, APPS.OKL_CONTACT_ROLE_UV r WHERE a.CRO_CODE = r.LOOKUP_CODE;— to decorate raw contact source rows with descriptions. Note that the join can eliminate historical rows, since the view returns only active records.
Custom reports that need expired roles must query OKC_CONTACT_SOURCES directly rather than this view. Because the view lives in the APPS schema, consumers require appropriate grants and should reference it as APPS.OKL_CONTACT_ROLE_UV to avoid synonym resolution differences between the 12.1.1 and 12.2.2 environments.
-
Lookup Type: OKC_CONTACT_ROLE
12.1.1
product: OKC - Contracts Core , meaning: Contact Role , description: Contact Roles ,
-
Lookup Type: OKC_CONTACT_ROLE
12.2.2
product: OKC - Contracts Core , meaning: Contact Role , description: Contact Roles ,
-
VIEW: APPS.OKL_CONTACT_ROLE_UV
12.1.1
-
VIEW: APPS.OKL_CONTACT_ROLE_UV
12.2.2
-
VIEW: APPS.OKI_K_CONTACTS_V
12.1.1
-
View: OKI_K_CONTACTS_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about contract contacts. , implementation_dba_data: Not implemented in this database ,
-
View: OKI_K_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_K_CONTACTS_V, object_name:OKI_K_CONTACTS_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about contract contacts. , implementation_dba_data: APPS.OKI_K_CONTACTS_V ,
-
VIEW: APPS.OKS_ENT_PARTY_CONT_V
12.2.2
-
View: OKL_CONTACT_ROLE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CONTACT_ROLE_UV, object_name:OKL_CONTACT_ROLE_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CONTACT_ROLE_UV ,
-
View: OKL_CONTACT_ROLE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CONTACT_ROLE_UV, object_name:OKL_CONTACT_ROLE_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CONTACT_ROLE_UV ,
-
VIEW: APPS.OKS_ENT_PARTY_CONT_V
12.1.1
-
VIEW: APPS.OKS_CONTACT_V
12.2.2
-
VIEW: APPS.OKS_CONTACT_V
12.1.1
-
VIEW: APPS.OKI_K_SALESREP_V
12.1.1
-
VIEW: APPS.OKC_CONTACTS_HV
12.1.1
-
VIEW: APPS.OKC_CONTACTS_V
12.2.2
-
VIEW: APPS.OKC_CONTACTS_V
12.1.1
-
VIEW: APPS.OKC_CONTACTS_HV
12.2.2
-
View: OKS_ENT_PARTY_CONT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_ENT_PARTY_CONT_V, object_name:OKS_ENT_PARTY_CONT_V, status:VALID, product: OKS - Service Contracts , description: Lists all Party Contacts , implementation_dba_data: APPS.OKS_ENT_PARTY_CONT_V ,
-
View: OKS_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CONTACT_V, object_name:OKS_CONTACT_V, status:VALID, product: OKS - Service Contracts , description: Contacts View for Contract details Form , implementation_dba_data: APPS.OKS_CONTACT_V ,
-
View: OKS_ENT_PARTY_CONT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_ENT_PARTY_CONT_V, object_name:OKS_ENT_PARTY_CONT_V, status:VALID, product: OKS - Service Contracts , description: Lists all Party Contacts , implementation_dba_data: APPS.OKS_ENT_PARTY_CONT_V ,
-
View: OKC_KOL_CONTACTS_V
12.1.1
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKS_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CONTACT_V, object_name:OKS_CONTACT_V, status:VALID, product: OKS - Service Contracts , description: Contacts View for Contract details Form , implementation_dba_data: APPS.OKS_CONTACT_V ,
-
View: OKC_KOL_CONTACTS_V
12.2.2
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKI_K_SALESREP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_K_SALESREP_V, object_name:OKI_K_SALESREP_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about contract sales representatives. , implementation_dba_data: APPS.OKI_K_SALESREP_V ,
-
View: OKR_CONTACTS_V
12.2.2
product: OKR - Contracts for Rights (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: OKI_K_SALESREP_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about contract sales representatives. , implementation_dba_data: Not implemented in this database ,
-
View: OKC_CONTACTS_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_CONTACTS_HV, object_name:OKC_CONTACTS_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_CONTACTS. , implementation_dba_data: APPS.OKC_CONTACTS_HV ,
-
View: OKR_K_STS_NOTIFS_CV
12.1.1
product: OKR - Contracts for Rights (Obsolete) , description: View for OKR_KSTS_NOTIFS table , implementation_dba_data: Not implemented in this database ,
-
View: OKR_K_STS_NOTIFS_CV
12.2.2
product: OKR - Contracts for Rights (Obsolete) , description: View for OKR_KSTS_NOTIFS table , implementation_dba_data: Not implemented in this database ,
-
View: OKR_CONTACTS_V
12.1.1
product: OKR - Contracts for Rights (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: OKC_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_CONTACTS_V, object_name:OKC_CONTACTS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTACTS , implementation_dba_data: APPS.OKC_CONTACTS_V ,
-
View: OKC_CONTACTS_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_CONTACTS_HV, object_name:OKC_CONTACTS_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_CONTACTS. , implementation_dba_data: APPS.OKC_CONTACTS_HV ,
-
View: OKC_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_CONTACTS_V, object_name:OKC_CONTACTS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTACTS , implementation_dba_data: APPS.OKC_CONTACTS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
TABLE: OKS.OKS_K_ORDER_CONTACTS
12.2.2
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_K_ORDER_CONTACTS, object_name:OKS_K_ORDER_CONTACTS, status:VALID,
-
TABLE: OKS.OKS_K_ORDER_CONTACTS
12.1.1
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_K_ORDER_CONTACTS, object_name:OKS_K_ORDER_CONTACTS, status:VALID,
-
APPS.OKC_ROLE_SOURCE_PUB SQL Statements
12.2.2
-
APPS.OKC_ROLE_SOURCE_PUB SQL Statements
12.1.1
-
TABLE: OKC.OKC_CONTACTS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_CONTACTS, object_name:OKC_CONTACTS, status:VALID,
-
TABLE: OKC.OKC_CONTACTS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_CONTACTS, object_name:OKC_CONTACTS, status:VALID,
-
APPS.OKC_QA_DATA_INTEGRITY SQL Statements
12.1.1
-
APPS.OKC_QA_DATA_INTEGRITY SQL Statements
12.2.2
-
APPS.OKS_COC_PVT SQL Statements
12.2.2
-
APPS.OKS_COC_PVT SQL Statements
12.1.1
-
APPS.OKS_ENTITLEMENTS_WEB SQL Statements
12.2.2
-
APPS.OKS_ENTITLEMENTS_WEB SQL Statements
12.1.1
-
PACKAGE: APPS.OKE_CONTRACT_PARTY_PUB
12.2.2
-
PACKAGE: APPS.OKC_OC_INT_QTK_PVT
12.2.2