Search Results oke_k_billing_events




Overview

The PA_EVENT_TYPES table is a core setup and reference table within the Oracle E-Business Suite Projects (PA) module. It stores implementation-defined classifications or categories for project events. An event type serves as a high-level grouping mechanism, enabling consistent categorization and processing of transactional data across the project lifecycle. Its primary role is to act as a master list of valid event codes, ensuring data integrity through foreign key relationships with numerous transactional and setup tables. This centralization allows for standardized reporting, billing, and accumulation of project costs and revenue based on event classification.

Key Information Stored

While the provided metadata does not list specific columns, the primary key is documented as EVENT_TYPE. Based on standard Oracle Projects table structures, this table typically contains at least the following key columns:

  • EVENT_TYPE: The unique code identifying the event classification (e.g., 'LABOR', 'EXPENSE', 'BILLABLE'). This is the primary key.
  • NAME: A descriptive name for the event type.
  • DESCRIPTION: A more detailed explanation of the event type's purpose.
  • Control columns such as LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, and CREATED_BY for auditing.
  • Status flags like ENABLED_FLAG to control active usage.

Common Use Cases and Queries

This table is fundamental for queries that categorize project transactions, define billing rules, and configure resource assignments. A common use case is generating a report of all active event types used in the system. Another is joining to transactional tables to analyze costs or revenue by event category. For instance, to list all project events along with their descriptive type, one would join PA_EVENTS to PA_EVENT_TYPES. A typical setup query to review available classifications would be:

SELECT event_type, name, description FROM pa.pa_event_types WHERE enabled_flag = 'Y' ORDER BY event_type;

Event types are also critical in defining retention rules for contracts, determining default billing extensions, and mapping resources, making this table central to project configuration and analysis.

Related Objects

The PA_EVENT_TYPES table is referenced by a significant number of other tables, primarily through foreign key relationships on the EVENT_TYPE column. As documented in the metadata, key related objects include:

  • Table: PA_EVENT_TYPES 12.2.2

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_EVENT_TYPES,  object_name:PA_EVENT_TYPES,  status:VALID,  product: PA - Projectsdescription: Implementation-defined classifications of events ,  implementation_dba_data: PA.PA_EVENT_TYPES

  • Table: PA_EVENT_TYPES 12.1.1

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_EVENT_TYPES,  object_name:PA_EVENT_TYPES,  status:VALID,  product: PA - Projectsdescription: Implementation-defined classifications of events ,  implementation_dba_data: PA.PA_EVENT_TYPES

  • Table: PA_TASKS 12.2.2

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_TASKS,  object_name:PA_TASKS,  status:VALID,  product: PA - Projectsdescription: User-defined subdivisions of project work ,  implementation_dba_data: PA.PA_TASKS

  • Table: PA_TASKS 12.1.1

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_TASKS,  object_name:PA_TASKS,  status:VALID,  product: PA - Projectsdescription: User-defined subdivisions of project work ,  implementation_dba_data: PA.PA_TASKS

  • Table: PA_PROJECTS_ALL 12.1.1

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_PROJECTS_ALL,  object_name:PA_PROJECTS_ALL,  status:VALID,  product: PA - Projectsdescription: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. ,  implementation_dba_data: PA.PA_PROJECTS_ALL

  • Table: PA_PROJECTS_ALL 12.2.2

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_PROJECTS_ALL,  object_name:PA_PROJECTS_ALL,  status:VALID,  product: PA - Projectsdescription: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. ,  implementation_dba_data: PA.PA_PROJECTS_ALL