Search Results pa_dist_list_items
Overview
The PA_DIST_LIST_ITEMS table is a core data object within the Oracle E-Business Suite Projects (PA) module, specifically for versions 12.1.1 and 12.2.2. It functions as a master repository for defining distribution lists, which are collections of recipients authorized to access specific objects within the application. As per the official ETRM documentation, its primary role is to define lists of recipients who can access a particular object, where a recipient can be a predefined role, a project team member, or a direct email address. This table is essential for managing and securing the distribution of information, notifications, and access permissions across project-related entities, thereby supporting collaborative workflows and data security.
Key Information Stored
The table's structure is designed to link distribution lists to their constituent members and to the objects they protect. While the full column list is not detailed in the provided excerpt, the documented foreign key relationship reveals critical columns and their purpose. The MENU_ID column is explicitly mentioned, linking a distribution list item to a specific menu object in the FND_MENUS table. This indicates the table stores at least an identifier for the distribution list (likely DIST_LIST_ID), an identifier for the member (which could be a ROLE_ID, PERSON_ID, or a free-text EMAIL_ADDRESS as per the description), and the MENU_ID to associate the list with an application object. Other typical columns would include a SEQUENCE_NUMBER for ordering, CREATION_DATE, and LAST_UPDATE_DATE for auditing.
Common Use Cases and Queries
This table is central to scenarios involving secure, role-based access and notifications. A common use case is determining who receives automated workflow notifications for project approvals or who has view access to specific project reports or dashboards. Administrators may query this table to audit or modify access lists. A sample SQL pattern to identify all recipients for a specific menu would be:
- SELECT dli.member_identifier, dli.member_type, fme.user_menu_name FROM pa_dist_list_items dli, fnd_menus fme WHERE dli.menu_id = fme.menu_id AND fme.menu_id = <specific_id> ORDER BY dli.sequence_number;
Another frequent reporting need is to list all distribution lists where a particular project team member is a recipient, which would involve joining to PA_PROJECT_PLAYERS or PER_ALL_PEOPLE_F based on the member_identifier.
Related Objects
PA_DIST_LIST_ITEMS has defined relationships with other key EBS objects. The primary documented relationship is a foreign key to the FND_MENUS table via the MENU_ID column, linking distribution items to application menus. It is intrinsically linked to the PA_DIST_LISTS table, which likely defines the header information for each distribution list, though this table is not mentioned in the excerpt. For resolving role-based recipients, it relates to FND_LOOKUP_VALUES for role types or PA_PROJECT_ROLE_TYPES. For project team member recipients, it joins to PA_PROJECT_PLAYERS and ultimately to HR tables like PER_ALL_PEOPLE_F. Data is typically created and maintained via the Projects application's user interface, with underlying PL/SQL APIs in the PA package suite likely managing the business logic.
-
Table: PA_DIST_LIST_ITEMS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_DIST_LIST_ITEMS, object_name:PA_DIST_LIST_ITEMS, status:VALID, product: PA - Projects , description: The table PA_DIST_ LIST_ITEMS defines list of recipients who can access a particular object. The recipient can be a role or project team member or an email address , implementation_dba_data: PA.PA_DIST_LIST_ITEMS ,
-
Table: PA_DIST_LIST_ITEMS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_DIST_LIST_ITEMS, object_name:PA_DIST_LIST_ITEMS, status:VALID, product: PA - Projects , description: The table PA_DIST_ LIST_ITEMS defines list of recipients who can access a particular object. The recipient can be a role or project team member or an email address , implementation_dba_data: PA.PA_DIST_LIST_ITEMS ,