Search Results psp_effort_report_elements
Overview
The PSP_EFFORT_REPORT_ELEMENTS table is a core data structure within the Oracle E-Business Suite (EBS) Labor Distribution module (PSP). It functions as a master reference table that defines the distinct types of elements or components that can be reported on an effort report. Effort reporting is a critical process for institutions, particularly in higher education and research, to certify and document how effort (typically expressed as a percentage of time) is distributed across funded projects and other activities. This table provides the foundational catalog of element types, such as specific projects, tasks, awards, or other cost objects, against which actual labor distribution details are recorded and reported. Its role is to ensure consistency and control over what can be included in the effort certification process.
Key Information Stored
While the provided ETRM metadata does not list specific columns beyond the primary key, the table's description and relationships indicate its core data. The primary column is ELEMENT_TYPE_ID, which serves as the unique identifier (Primary Key) for each reportable element type. Based on standard EBS design patterns for such reference tables, it typically includes columns to store a code and a name or description for the element (e.g., ELEMENT_CODE, ELEMENT_NAME), along with control flags to indicate its active status and potentially its classification. The table essentially holds the controlled vocabulary of effort reporting components used across the system.
Common Use Cases and Queries
The primary use case is the setup and maintenance of valid effort reporting elements within the Labor Distribution module. Administrators would populate this table via the application's front-end forms to define the universe of elements available for reporting. For reporting and data validation, common SQL queries involve joining this master table to transactional details. A fundamental query retrieves all active elements available for use:
- SELECT element_type_id, element_code, element_name FROM psp_effort_report_elements WHERE enabled_flag = 'Y' ORDER BY element_code;
Another critical use is in effort report generation, where the element descriptions from this table are joined to detail lines to produce human-readable reports:
- SELECT det.report_header_id, det.element_type_id, ele.element_name, det.percentage FROM psp_effort_report_details det, psp_effort_report_elements ele WHERE det.element_type_id = ele.element_type_id AND det.report_header_id = :p_header_id;
Related Objects
The table has a direct and essential relationship with the primary transactional table for effort reporting details, as documented in the provided metadata.
- PSP_EFFORT_REPORT_DETAILS: This is the main transactional table that stores the actual effort percentages reported for specific elements on an effort report. It references PSP_EFFORT_REPORT_ELEMENTS via a foreign key constraint. The join is performed on the ELEMENT_TYPE_ID column (PSP_EFFORT_REPORT_DETAILS.ELEMENT_TYPE_ID → PSP_EFFORT_REPORT_ELEMENTS.ELEMENT_TYPE_ID). This relationship ensures that every detail line in an effort report points to a valid, pre-defined element type.
-
Table: PSP_EFFORT_REPORT_ELEMENTS
12.2.2
owner:PSP, object_type:TABLE, fnd_design_data:PSP.PSP_EFFORT_REPORT_ELEMENTS, object_name:PSP_EFFORT_REPORT_ELEMENTS, status:VALID, product: PSP - Labor Distribution , description: Stores elements to be included in effort reports , implementation_dba_data: PSP.PSP_EFFORT_REPORT_ELEMENTS ,
-
Table: PSP_EFFORT_REPORT_ELEMENTS
12.1.1
owner:PSP, object_type:TABLE, fnd_design_data:PSP.PSP_EFFORT_REPORT_ELEMENTS, object_name:PSP_EFFORT_REPORT_ELEMENTS, status:VALID, product: PSP - Labor Distribution , description: Stores elements to be included in effort reports , implementation_dba_data: PSP.PSP_EFFORT_REPORT_ELEMENTS ,
-
APPS.PSP_ADJ_DRIVER dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.2.2
-
APPS.PSP_ADJ_DRIVER dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.1.1
-
APPS.PSP_UPGRADE_EFF_REPORTS dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.1.1
-
APPS.PSP_EFFORTS_PKG dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.2.2
-
APPS.PSP_UPGRADE_EFF_REPORTS dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.2.2
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.1.1
-
APPS.PSP_EFFORTS_PKG dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.1.1
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG dependencies on PSP_EFFORT_REPORT_ELEMENTS
12.2.2
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.PSP_EFFORT_REPORT_ELEMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PSP_EFFORT_REPORT_ELEMENTS, status:VALID,
-
VIEW: PSP.PSP_EFFORT_REPORT_ELEMENTS#
12.2.2
owner:PSP, object_type:VIEW, object_name:PSP_EFFORT_REPORT_ELEMENTS#, status:VALID,
-
SYNONYM: APPS.PSP_EFFORT_REPORT_ELEMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PSP_EFFORT_REPORT_ELEMENTS, status:VALID,
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG dependencies on APP_EXCEPTION
12.2.2
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG SQL Statements
12.1.1
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG dependencies on APP_EXCEPTION
12.1.1
-
TABLE: PSP.PSP_EFFORT_REPORT_ELEMENTS
12.1.1
owner:PSP, object_type:TABLE, fnd_design_data:PSP.PSP_EFFORT_REPORT_ELEMENTS, object_name:PSP_EFFORT_REPORT_ELEMENTS, status:VALID,
-
TABLE: PSP.PSP_EFFORT_REPORT_ELEMENTS
12.2.2
owner:PSP, object_type:TABLE, fnd_design_data:PSP.PSP_EFFORT_REPORT_ELEMENTS, object_name:PSP_EFFORT_REPORT_ELEMENTS, status:VALID,
-
VIEW: PSP.PSP_EFFORT_REPORT_ELEMENTS#
12.2.2
-
APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG dependencies on FND_MESSAGE
12.2.2
-
TRIGGER: APPS.PSP_EFFORT_REPORT_ELEMENTS_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PSP_EFFORT_REPORT_ELEMENTS_WHO, status:VALID,
-
Table: PSP_EFFORT_REPORT_DETAILS
12.1.1
owner:PSP, object_type:TABLE, fnd_design_data:PSP.PSP_EFFORT_REPORT_DETAILS, object_name:PSP_EFFORT_REPORT_DETAILS, status:VALID, product: PSP - Labor Distribution , description: Contains assorted details by charging account for a given effort report , implementation_dba_data: PSP.PSP_EFFORT_REPORT_DETAILS ,
-
TRIGGER: APPS.PSP_EFFORT_REPORT_ELEMENTS_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:PSP_EFFORT_REPORT_ELEMENTS_WHO, status:VALID,
-
PACKAGE BODY: APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_EFFORT_REPORT_ELEMENTS_PKG, status:VALID,
-
Table: PSP_EFFORT_REPORT_DETAILS
12.2.2
owner:PSP, object_type:TABLE, fnd_design_data:PSP.PSP_EFFORT_REPORT_DETAILS, object_name:PSP_EFFORT_REPORT_DETAILS, status:VALID, product: PSP - Labor Distribution , description: Contains assorted details by charging account for a given effort report , implementation_dba_data: PSP.PSP_EFFORT_REPORT_DETAILS ,
-
PACKAGE BODY: APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_EFFORT_REPORT_ELEMENTS_PKG, status:VALID,
-
TRIGGER: APPS.PSP_EFFORT_REPORT_ELEMENTS_WHO
12.2.2
-
PACKAGE BODY: APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG
12.1.1
-
PACKAGE BODY: APPS.PSP_UPGRADE_EFF_REPORTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_UPGRADE_EFF_REPORTS, status:VALID,
-
PACKAGE BODY: APPS.PSP_UPGRADE_EFF_REPORTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_UPGRADE_EFF_REPORTS, status:VALID,
-
PACKAGE BODY: APPS.PSP_EFFORTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_EFFORTS_PKG, status:VALID,
-
TRIGGER: APPS.PSP_EFFORT_REPORT_ELEMENTS_WHO
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.PSP_ADJ_DRIVER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_ADJ_DRIVER, status:VALID,
-
PACKAGE BODY: APPS.PSP_ADJ_DRIVER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_ADJ_DRIVER, status:VALID,
-
PACKAGE BODY: APPS.PSP_EFFORT_REPORT_ELEMENTS_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PSP_EFFORTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_EFFORTS_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.PSP_EFFORTS_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.PSP_EFFORTS_PKG dependencies on FND_MESSAGE
12.2.2
-
12.2.2 DBA Data
12.2.2