Search Results title_meaning
Overview
APPS.OTA_STUDENTS_V is a supplementary database view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema and registered in FND Design Data as OTA.OTA_STUDENTS_V. Its status is VALID. The view is explicitly classified as a "supplementary view used to simplify forms coding," meaning it exists primarily to support the Oracle Training Administration (OTA) forms layer rather than to serve as a stable public reporting interface. The ETRM documentation carries the standard Oracle warning that querying or altering data through this view is not recommended, because its definition may change dramatically in subsequent minor or major releases. It is catalogued as a PUBLIC synonym, OTA_STUDENTS_V, allowing callers to reference it without the APPS prefix.
The view presents a consolidated student or learner record drawn from the HR person model, combining personal identifiers, name components, birth date, title information, and external identifiers such as employee and applicant numbers, together with customer linkage columns. In reporting and integration terms it acts as a convenience projection of person data for training-related student rosters, class enrolment extracts, and quick ad hoc lookups where the training context requires learner details.
Underlying Base Objects
According to the documented dependency metadata, APPS.OTA_STUDENTS_V is defined over the following objects:
- PER_ALL_PEOPLE_F (referenced as a SYNONYM) — the effective-dated HR persons table supplying PERSON_ID, EFFECTIVE_START_DATE, EFFECTIVE_END_DATE, BUSINESS_GROUP_ID, name fields, date of birth, and national identifiers.
- PER_BUSINESS_GROUPS (VIEW) — provides the business group context, typically resolved through BUSINESS_GROUP_ID.
- HR_GENERAL (PACKAGE) — the HR general utilities package, used to derive or format values such as full name and title meaning.
The view therefore sits on top of the core HR person entity rather than on a dedicated OTA student table, which explains the presence of HR identifiers and the effective-dated columns reflecting the PER_ALL_PEOPLE_F date-tracked structure. It references and is referenced by the public synonym of the same name, and the query text is a straightforward SELECT across the seventeen exposed columns.
Key Columns
- ROW_ID (ROWID) — the physical row identifier of the underlying row.
- PERSON_ID (NUMBER) — the primary person key linking to PER_ALL_PEOPLE_F.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE (DATE) — the date-tracked validity window of the person record.
- BUSINESS_GROUP_ID (NUMBER) — the business group the person belongs to.
- LAST_NAME, FIRST_NAME, FULL_NAME, MIDDLE_NAMES — name components; FULL_NAME is a concatenated display value.
- DATE_OF_BIRTH (DATE) — student date of birth.
- TITLE (VARCHAR2 30) and TITLE_MEANING (VARCHAR2 4000) — the title code and its decoded, human-readable meaning, the latter typically resolved through HR_GENERAL. TITLE_MEANING is the column most frequently targeted by users searching for descriptive title text.
- EMPLOYEE_NUMBER and APPLICANT_NUMBER (VARCHAR2 30) — the HR-assigned identifiers for employees and applicants respectively.
- WORK_TELEPHONE (VARCHAR2 60) — business telephone contact.
- CUSTOMER_ID, CUSTOMER_NAME (VARCHAR2) — external customer linkage accompanying the learner record.
Common Use Cases and Queries
Typical usage includes verifying learner title decoding, extracting student rosters for a business group, and cross-checking employee or applicant numbers against training enrolment records. A minimal lookup follows:
SELECT person_id, full_name, title, title_meaning, employee_number FROM apps.ota_students_v WHERE business_group_id = :p_bg_id;
A title-focused query, matching the "title_meaning" search intent, would be:
SELECT person_id, full_name, title_meaning FROM apps.ota_students_v WHERE title_meaning IS NOT NULL;
Because the view is a forms-support construct, Oracle recommends that production reporting and integrations select directly from PER_ALL_PEOPLE_F and its associated lookups rather than depend on OTA_STUDENTS_V, given the documented risk of structural change across releases.
-
VIEW: APPS.OTA_STUDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_STUDENTS_V, object_name:OTA_STUDENTS_V, status:VALID,
-
VIEW: APPS.GMS_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID,
-
VIEW: APPS.GMS_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID,
-
VIEW: APPS.OTA_CUSTOMER_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CUSTOMER_CONTACTS_V, object_name:OTA_CUSTOMER_CONTACTS_V, status:VALID,
-
View: IGS_OR_CONTACTS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the institution Contact Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OTA_STUDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_STUDENTS_V, object_name:OTA_STUDENTS_V, status:VALID,
-
View: OTA_CUSTOMER_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CUSTOMER_CONTACTS_V, object_name:OTA_CUSTOMER_CONTACTS_V, status:VALID, product: OTA - Learning Management , description: View to list all Contacts for a Customer. , implementation_dba_data: APPS.OTA_CUSTOMER_CONTACTS_V ,
-
VIEW: APPS.GMS_LOC_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID,
-
VIEW: APPS.GMS_LOC_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID,
-
VIEW: APPS.OTA_CUSTOMER_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CUSTOMER_CONTACTS_V, object_name:OTA_CUSTOMER_CONTACTS_V, status:VALID,
-
View: OTA_CUSTOMER_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CUSTOMER_CONTACTS_V, object_name:OTA_CUSTOMER_CONTACTS_V, status:VALID, product: OTA - Learning Management , description: View to list all Contacts for a Customer. , implementation_dba_data: APPS.OTA_CUSTOMER_CONTACTS_V ,
-
View: IGS_OR_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_CONTACTS_V, object_name:IGS_OR_CONTACTS_V, status:VALID, product: IGS - Student System , description: Describes the institution Contact Details , implementation_dba_data: APPS.IGS_OR_CONTACTS_V ,
-
VIEW: APPS.IGS_OR_CONTACTS_V
12.1.1
-
VIEW: APPS.OTA_CUSTOMER_CONTACTS_V
12.2.2
-
VIEW: APPS.AR_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CONTACTS_V, object_name:AR_CONTACTS_V, status:VALID,
-
View: AR_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CONTACTS_V, object_name:AR_CONTACTS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CONTACTS_V ,
-
View: GMS_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_CONTACTS_V ,
-
VIEW: APPS.AR_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CONTACTS_V, object_name:AR_CONTACTS_V, status:VALID,
-
VIEW: APPS.AR_CONTACTS_V
12.2.2
-
View: OTA_STUDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_STUDENTS_V, object_name:OTA_STUDENTS_V, status:VALID, product: OTA - Learning Management , description: View to list all Internal Persons. , implementation_dba_data: APPS.OTA_STUDENTS_V ,
-
View: OTA_STUDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_STUDENTS_V, object_name:OTA_STUDENTS_V, status:VALID, product: OTA - Learning Management , description: View to list all Internal Persons. , implementation_dba_data: APPS.OTA_STUDENTS_V ,
-
View: GMS_LOC_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_LOC_CONTACTS_V ,
-
View: GMS_LOC_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_LOC_CONTACTS_V ,
-
VIEW: APPS.OTA_CUSTOMER_CONTACTS_V
12.1.1
-
View: AR_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CONTACTS_V, object_name:AR_CONTACTS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CONTACTS_V ,
-
View: GMS_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_CONTACTS_V ,
-
VIEW: APPS.IGS_OR_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_CONTACTS_V, object_name:IGS_OR_CONTACTS_V, status:VALID,
-
VIEW: APPS.AR_CONTACTS_V
12.1.1
-
PACKAGE: APPS.PER_QH_SUMMARY_QUERY
12.1.1
-
PACKAGE: APPS.PER_QH_SUMMARY_QUERY
12.2.2
-
APPS.PER_QH_FIND_QUERY dependencies on HR_LOOKUPS
12.1.1
-
PACKAGE: APPS.PER_QH_MAINTAIN_QUERY
12.2.2
-
APPS.PER_QH_FIND_QUERY dependencies on HR_LOOKUPS
12.2.2
-
PACKAGE: APPS.PER_QH_MAINTAIN_QUERY
12.1.1
-
PACKAGE: APPS.PER_QH_FIND_QUERY
12.2.2
-
PACKAGE: APPS.PER_QH_FIND_QUERY
12.1.1
-
APPS.PER_QH_SUMMARY_QUERY dependencies on HR_LOOKUPS
12.2.2
-
APPS.PER_QH_SUMMARY_QUERY dependencies on HR_LOOKUPS
12.1.1
-
APPS.PER_QH_MAINTAIN_QUERY dependencies on HR_LOOKUPS
12.2.2
-
APPS.PER_QH_MAINTAIN_QUERY dependencies on HR_LOOKUPS
12.1.1
-
APPS.PER_QH_SUMMARY_QUERY dependencies on PER_ALL_PEOPLE_F
12.1.1
-
APPS.PER_QH_MAINTAIN_QUERY dependencies on PER_ALL_PEOPLE_F
12.2.2
-
APPS.PER_QH_SUMMARY_QUERY dependencies on PER_ALL_PEOPLE_F
12.2.2
-
APPS.PER_QH_MAINTAIN_QUERY dependencies on PER_ALL_PEOPLE_F
12.1.1
-
APPS.PER_QH_FIND_QUERY dependencies on PER_ALL_PEOPLE_F
12.1.1
-
APPS.PER_QH_FIND_QUERY dependencies on PER_ALL_PEOPLE_F
12.2.2
-
eTRM - GMS Tables and Views
12.1.1
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - GMS Tables and Views
12.2.2
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - OTA Tables and Views
12.2.2
description: Currently not used ,
-
eTRM - OTA Tables and Views
12.1.1
description: Currently not used ,