Search Results activity_user_status
Overview
APPS.OTV_ACTIVITIES is a reporting view within the Oracle E-Business Suite Training Administration (OTM/ETRM) module. It presents a consolidated, business-friendly projection of training activities, joining activity version data to definition, language, person, vendor, and organization information. Its principal role is to expose activity metadata—such as version name, description, duration, objectives, intended audience, controlling person, and vendor—in a single queryable object so that reports, concurrent programs, and integrations do not need to reconstruct the underlying multi-table joins themselves.
The view is significant in the context of the user search term activity_user_status. Because the underlying tables store a raw status code, the view applies HR_GENERAL.DECODE_LOOKUP('ACTIVITY_USER_STATUS', OAV.USER_STATUS) to translate the coded value into a meaningful, translatable display string. This makes OTV_ACTIVITIES the natural surface for reporting on an activity's user-facing status without requiring the consumer to independently decode the lookup. The view is documented under both Oracle EBS 12.1.1 and 12.2.2, remaining a stable ETRM reporting object across releases.
Underlying Base Objects
The view is defined over a set of synonyms, views, and packages owned primarily by APPS. The documented referenced base objects are:
- OTA_ACTIVITY_VERSIONS (SYNONYM) — the primary driver, supplying version name, description, duration, user status, objectives, audience, and version identifiers.
- OTA_ACTIVITY_DEFINITIONS (SYNONYM) — supplies the activity name, business group, and the activity identifier linking versions to definitions.
- FND_LANGUAGES_VL (VIEW) — provides the language description via an outer join on language ID.
- PER_PEOPLE_F (VIEW) — resolves the controlling person's full name, joined on person ID with an effective-date constraint.
- PO_VENDORS (VIEW) — supplies the vendor name for externally delivered activities.
- HR_ALL_ORGANIZATION_UNITS (SYNONYM) — provides the business group (organization) name.
- OTV_SCHEDULED_EVENTS (VIEW) — used in an EXISTS subquery to restrict the view to activities that have at least one scheduled event.
- HR_GENERAL (PACKAGE) — supplies DECODE_LOOKUP for frequency and activity user status.
- Additional referenced objects include HR_PERSON_NAME, HR_SECURITY, OTA_GENERAL, OTA_UTILITY, and OTA_VIEWS_PKG packages.
The joins are largely outer joins (noted by the (+) syntax), so activities lacking a person, vendor, or language record are still returned. The view is further scoped by TRUNC(SYSDATE) falling within the version's effective start and end dates, and by the business group resolved through OTA_GENERAL.GET_BUSINESS_GROUP_ID.
Key Columns
- VERSION_NAME / DESCRIPTION — the activity version name and its description.
- NAME (activity definition) — the base activity name from OTA_ACTIVITY_DEFINITIONS.
- DURATION and decoded DURATION_UNITS — the activity length with its frequency unit decoded via the FREQUENCY lookup.
- USER_STATUS (decoded) — the activity user status translated through the ACTIVITY_USER_STATUS lookup, the column of interest for the searched term.
- OBJECTIVES / INTENDED_AUDIENCE — descriptive attributes of the activity.
- FULL_NAME — the controlling person's name.
- VENDOR_NAME — the supplier for externally delivered activities.
- CONTROLLING_PERSON_ID, ACTIVITY_ID, ACTIVITY_VERSION_ID, BUSINESS_GROUP_ID — surrogate keys useful for joining and filtering.
- Business group NAME — the organization name of the owning business group.
Common Use Cases and Queries
Typical uses include activity catalog reporting, status dashboards filtered on activity user status, and vendor-delivered training analyses. The view is well suited to reporting only activities that have scheduled events, since the EXISTS clause inherently filters to those.
Sample query retrieving activities by decoded user status:
SELECT activity_id, version_name, user_status, duration, full_name, vendor_name FROM apps.otv_activities WHERE user_status = 'Active';
Because USER_STATUS is already decoded, filtering on the display value is practical in reporting, though consumers should be aware that lookup meanings may be translated. To obtain the raw code, the underlying OTA_ACTIVITY_VERSIONS.USER_STATUS must be queried directly.
Additional scenario—listing activities by business group with their controlling person:
SELECT name, business_group_id, full_name, vendor_name FROM apps.otv_activities ORDER BY name;
Integration consumers commonly use ACTIVITY_VERSION_ID from this view to correlate with OTV_SCHEDULED_EVENTS and other ETRM event objects.
-
Lookup Type: ACTIVITY_USER_STATUS
12.1.1
product: PER - Human Resources , meaning: ACTIVITY USER STATUS , description: The user status of an activity. ,
-
Lookup Type: ACTIVITY_USER_STATUS
12.2.2
product: PER - Human Resources , meaning: ACTIVITY USER STATUS , description: The user status of an activity. ,
-
VIEW: APPS.OTV_ACTIVITIES
12.1.1
-
VIEW: APPS.OTV_ACTIVITIES
12.2.2
-
VIEW: APPS.OTA_ACTIVITY_VERSIONS_V
12.2.2
-
VIEW: APPS.OTV_TRAINING_COMPETENCE
12.1.1
-
VIEW: APPS.OTV_TRAINING_COMPETENCE
12.2.2
-
VIEW: APPS.OTFV_TRAINING_ACTIVITIES
12.2.2
-
VIEW: APPS.OTFV_TRAINING_ACTIVITIES
12.1.1
-
VIEW: APPS.OTA_ACTIVITY_VERSIONS_V
12.1.1
-
View: OTFV_TRAINING_ACTIVITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_ACTIVITIES, object_name:OTFV_TRAINING_ACTIVITIES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_ACTIVITIES ,
-
View: OTV_ACTIVITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_ACTIVITIES, object_name:OTV_ACTIVITIES, status:VALID, product: OTA - Learning Management , description: View to list all information about an Activity and Activity Version. , implementation_dba_data: APPS.OTV_ACTIVITIES ,
-
View: OTV_ACTIVITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_ACTIVITIES, object_name:OTV_ACTIVITIES, status:VALID, product: OTA - Learning Management , description: View to list all information about an Activity and Activity Version. , implementation_dba_data: APPS.OTV_ACTIVITIES ,
-
View: OTV_TRAINING_COMPETENCE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_TRAINING_COMPETENCE, object_name:OTV_TRAINING_COMPETENCE, status:VALID, product: OTA - Learning Management , description: View to list student's competence for an Activity version. , implementation_dba_data: APPS.OTV_TRAINING_COMPETENCE ,
-
View: OTV_TRAINING_COMPETENCE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_TRAINING_COMPETENCE, object_name:OTV_TRAINING_COMPETENCE, status:VALID, product: OTA - Learning Management , description: View to list student's competence for an Activity version. , implementation_dba_data: APPS.OTV_TRAINING_COMPETENCE ,
-
View: OTFV_TRAINING_ACTIVITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_ACTIVITIES, object_name:OTFV_TRAINING_ACTIVITIES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_ACTIVITIES ,
-
View: OTA_ACTIVITY_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_ACTIVITY_VERSIONS_V, object_name:OTA_ACTIVITY_VERSIONS_V, status:VALID, product: OTA - Learning Management , description: View to list all information about an Activity Version. , implementation_dba_data: APPS.OTA_ACTIVITY_VERSIONS_V ,
-
View: OTA_ACTIVITY_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_ACTIVITY_VERSIONS_V, object_name:OTA_ACTIVITY_VERSIONS_V, status:VALID, product: OTA - Learning Management , description: View to list all information about an Activity Version. , implementation_dba_data: APPS.OTA_ACTIVITY_VERSIONS_V ,
-
VIEW: APPS.OTFV_RESOURCE_CHECKLIST
12.1.1
-
VIEW: APPS.OTFV_RESOURCE_CHECKLIST
12.2.2
-
View: OTFV_RESOURCE_CHECKLIST
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_RESOURCE_CHECKLIST, object_name:OTFV_RESOURCE_CHECKLIST, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_RESOURCE_CHECKLIST ,
-
View: OTFV_RESOURCE_CHECKLIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_RESOURCE_CHECKLIST, object_name:OTFV_RESOURCE_CHECKLIST, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_RESOURCE_CHECKLIST ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.OTA_TAV_API_BUSINESS_RULES dependencies on OTA_GENERAL
12.1.1
-
APPS.OTA_TAV_API_BUSINESS_RULES dependencies on OTA_GENERAL
12.2.2
-
PACKAGE BODY: APPS.OTA_TAV_API_BUSINESS_RULES
12.1.1
-
PACKAGE BODY: APPS.OTA_TAV_API_BUSINESS_RULES
12.2.2
-
APPS.OTA_TAV_API_BUSINESS_RULES dependencies on HR_UTILITY
12.2.2
-
APPS.OTA_TAV_API_BUSINESS_RULES dependencies on HR_UTILITY
12.1.1