Search Results pa_actions
Overview
APPS.PA_DLVR_TYPE_ACTIONS_V is a reporting view in the Oracle E-Business Suite Projects (PA) module that exposes the relationship between deliverable types and the actions configured against them. In the Projects data model, deliverable types are stored as project elements with the discriminator OBJECT_TYPE = 'PA_DLVR_TYPES', while the actions performed against those deliverables are stored as project elements with OBJECT_TYPE = 'PA_ACTIONS'. The association between the two is captured in PA_OBJECT_RELATIONSHIPS as the 'A' relationship type. This view joins those elements together with version, scheduling, and status information, producing a single denormalized result set suitable for reporting, integration extracts, and diagnostic queries. It is commonly reached when users search on "pa_dlvr_types," since the view is the primary published access path for the deliverable-type-to-action linkage. The view is owned by APPS and is a read-only construct; no DML should be issued against it.
Underlying Base Objects
The view is defined over five documented base objects and one PL/SQL package:
- PA_PROJ_ELEMENTS (synonym) — aliased PPE, the driving table. Supplies ELEMENT_NUMBER, NAME, DESCRIPTION, OBJECT_TYPE, PROJ_ELEMENT_ID, PROJECT_ID, STATUS_CODE, FUNCTION_CODE, and RECORD_VERSION_NUMBER. Filtered to OBJECT_TYPE = 'PA_ACTIONS'.
- PA_PROJ_ELEMENT_VERSIONS (synonym) — aliased PPV, joined on PROJ_ELEMENT_ID and PROJECT_ID, supplying ELEMENT_VERSION_ID and the version-level RECORD_VERSION_NUMBER.
- PA_PROJ_ELEM_VER_SCHEDULE (synonym) — aliased PSC, joined on ELEMENT_VERSION_ID, providing SCHEDULED_FINISH_DATE.
- PA_PROJECT_STATUSES (synonym) — aliased PPS, an outer join on STATUS_CODE supplying PROJECT_STATUS_NAME.
- PA_OBJECT_RELATIONSHIPS (synonym) — aliased OBJ, joined via PROJ_ELEMENT_ID = OBJECT_ID_TO2 with OBJECT_TYPE_FROM = 'PA_DLVR_TYPES', OBJECT_TYPE_TO = 'PA_ACTIONS', and RELATIONSHIP_TYPE = 'A'. This join supplies OBJECT_ID_FROM1, OBJECT_ID_FROM2, OBJECT_RELATIONSHIP_ID, and OBJECT_TYPE_FROM.
- PA_PROJ_ELEMENTS_UTILS (package) — invoked through GET_PA_LOOKUP_MEANING('PA_DLVR_ACTION_FUNCTION', PPE.FUNCTION_CODE) to translate the action function code into its lookup meaning.
Key Columns
- ELEMENT_NUMBER, NAME, DESCRIPTION — identity of the action element.
- OBJECT_TYPE — will resolve to 'PA_ACTIONS' for rows returned by this view.
- PROJ_ELEMENT_ID, PROJECT_ID, ELEMENT_VERSION_ID — primary identifiers used to join to other Projects entities.
- STATUS_CODE / PROJECT_STATUS_NAME — status of the element plus the decoded status name.
- SCHEDULED_FINISH_DATE — planned completion date from the version schedule.
- FUNCTION_CODE plus the GET_PA_LOOKUP_MEANING expression — the action's function and its translated lookup meaning from the PA_DLVR_ACTION_FUNCTION lookup.
- OBJECT_ID_FROM1 / OBJECT_ID_FROM2 — the identifiers of the originating deliverable type in PA_OBJECT_RELATIONSHIPS.
- OBJECT_RELATIONSHIP_ID, OBJECT_TYPE_FROM — the relationship record identifier and the source object type ('PA_DLVR_TYPES').
- RECORD_VERSION_NUMBER — appears multiple times, once from PPE and once from PPV, supporting optimistic locking and change detection.
Common Use Cases and Queries
Typical scenarios include retrieving all actions defined for a given deliverable type, verifying that a relationship exists in PA_OBJECT_RELATIONSHIPS, and feeding downstream extracts for project planning reports.
Example — list actions for a specific deliverable type:
- SELECT element_number, name, function_code, project_status_name, scheduled_finish_date FROM apps.pa_dlvr_type_actions_v WHERE object_id_from1 = :deliverable_type_id;
Example — audit relationship coverage:
- SELECT v.project_id, v.object_id_from1, v.object_relationship_id, COUNT(*) FROM apps.pa_dlvr_type_actions_v v GROUP BY v.project_id, v.object_id_from1, v.object_relationship_id;
Because the view includes a package function call per row, queries returning large volumes should be restricted with predicates on PROJECT_ID or OBJECT_ID_FROM1 to avoid unnecessary function invocations. The join to PA_PROJECT_STATUSES is an outer join, so PROJECT_STATUS_NAME can be NULL when no matching status code exists.
-
VIEW: APPS.PA_DLVR_TYPE_ACTIONS_V
12.2.2
-
VIEW: APPS.PA_DLVR_TYPE_ACTIONS_V
12.1.1
-
VIEW: APPS.PA_DLVR_ACTIONS_V
12.1.1
-
VIEW: APPS.PA_DLVR_ACTIONS_V
12.2.2
-
APPS.PA_DELIVERABLE_UTILS SQL Statements
12.2.2
-
APPS.PA_DELIVERABLE_UTILS SQL Statements
12.1.1
-
View: PA_DLVR_TYPE_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLVR_TYPE_ACTIONS_V, object_name:PA_DLVR_TYPE_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_DLVR_TYPE_ACTIONS_V selects all the attributes of a Deliverable Type Action , implementation_dba_data: APPS.PA_DLVR_TYPE_ACTIONS_V ,
-
View: PA_DLVR_TYPE_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLVR_TYPE_ACTIONS_V, object_name:PA_DLVR_TYPE_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_DLVR_TYPE_ACTIONS_V selects all the attributes of a Deliverable Type Action , implementation_dba_data: APPS.PA_DLVR_TYPE_ACTIONS_V ,
-
View: PA_DLVR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLVR_ACTIONS_V, object_name:PA_DLVR_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_DLVR_ACTIONS_V selects all the attributes of a Deliverable Action , implementation_dba_data: APPS.PA_DLVR_ACTIONS_V ,
-
VIEW: APPS.PA_EVENTS_DELIVERABLE_V
12.2.2
-
VIEW: APPS.PA_LAUNCH_PAGE_ACTIONS_V
12.2.2
-
VIEW: APPS.PA_EVENTS_DELIVERABLE_V
12.1.1
-
View: PA_DLVR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLVR_ACTIONS_V, object_name:PA_DLVR_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_DLVR_ACTIONS_V selects all the attributes of a Deliverable Action , implementation_dba_data: APPS.PA_DLVR_ACTIONS_V ,
-
VIEW: APPS.PA_DLVR_ACTIONS_AMG_V
12.1.1
-
VIEW: APPS.PA_LAUNCH_PAGE_ACTIONS_V
12.1.1
-
VIEW: APPS.PA_DLVR_ACTIONS_AMG_V
12.2.2
-
View: PA_LAUNCH_PAGE_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_ACTIONS_V, object_name:PA_LAUNCH_PAGE_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_ACTIONS_V gives the consolidated list of actions , implementation_dba_data: APPS.PA_LAUNCH_PAGE_ACTIONS_V ,
-
Lookup Type: PA_OBJECTS
12.1.1
product: PA - Projects , meaning: Object Type , description: Object Type ,
-
View: PA_EVENTS_DELIVERABLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENTS_DELIVERABLE_V, object_name:PA_EVENTS_DELIVERABLE_V, status:VALID, product: PA - Projects , description: 10 Sc only , implementation_dba_data: APPS.PA_EVENTS_DELIVERABLE_V ,
-
Lookup Type: PA_OBJECTS
12.2.2
product: PA - Projects , meaning: Object Type , description: Object Type ,
-
View: PA_LAUNCH_PAGE_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_ACTIONS_V, object_name:PA_LAUNCH_PAGE_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_ACTIONS_V gives the consolidated list of actions , implementation_dba_data: APPS.PA_LAUNCH_PAGE_ACTIONS_V ,
-
View: PA_EVENTS_DELIVERABLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENTS_DELIVERABLE_V, object_name:PA_EVENTS_DELIVERABLE_V, status:VALID, product: PA - Projects , description: 10 Sc only , implementation_dba_data: APPS.PA_EVENTS_DELIVERABLE_V ,
-
View: PA_DLVR_ACTIONS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLVR_ACTIONS_AMG_V, object_name:PA_DLVR_ACTIONS_AMG_V, status:VALID, product: PA - Projects , description: PA_DLVR_ACTIONS_AMG_V selects all the attributes of a Deliverable Action. , implementation_dba_data: APPS.PA_DLVR_ACTIONS_AMG_V ,
-
View: PA_DLVR_ACTIONS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLVR_ACTIONS_AMG_V, object_name:PA_DLVR_ACTIONS_AMG_V, status:VALID, product: PA - Projects , description: PA_DLVR_ACTIONS_AMG_V selects all the attributes of a Deliverable Action. , implementation_dba_data: APPS.PA_DLVR_ACTIONS_AMG_V ,
-
PACKAGE BODY: APPS.PA_DELIVERABLE_UTILS
12.2.2
-
PACKAGE BODY: APPS.PA_DELIVERABLE_UTILS
12.1.1
-
APPS.PA_ACTIONS_PUB SQL Statements
12.1.1
-
APPS.PA_ACTIONS_PUB SQL Statements
12.2.2
-
APPS.PA_DELIVERABLE_PVT SQL Statements
12.2.2
-
APPS.PA_DELIVERABLE_PVT SQL Statements
12.1.1
-
APPS.PA_ACTIONS_PVT SQL Statements
12.2.2
-
APPS.PA_ACTIONS_PVT SQL Statements
12.1.1
-
APPS.PA_DELIVERABLE_PVT dependencies on OKE_DELIVERABLE_UTILS_PUB
12.2.2
-
APPS.PA_ACTIONS_PVT dependencies on PA_LOOKUPS
12.1.1
-
APPS.PA_DELIVERABLE_PVT dependencies on OKE_DELIVERABLE_UTILS_PUB
12.1.1
-
APPS.PA_ACTIONS_PVT dependencies on PA_LOOKUPS
12.2.2
-
APPS.PA_ACTIONS_PUB dependencies on PA_PROJ_ELEMENT_VERSIONS
12.2.2
-
APPS.PA_ACTIONS_PUB dependencies on PA_PROJ_ELEMENT_VERSIONS
12.1.1
-
APPS.PA_DELIVERABLE_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_DELIVERABLE_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_DELIVERABLE_UTILS dependencies on OKE_DELIVERABLE_UTILS_PUB
12.2.2
-
APPS.PA_DELIVERABLE_UTILS dependencies on OKE_DELIVERABLE_UTILS_PUB
12.1.1
-
APPS.PA_DELIVERABLE_UTILS dependencies on PA_PROJ_ELEMENT_VERSIONS
12.1.1
-
APPS.PA_DELIVERABLE_UTILS dependencies on PA_PROJ_ELEMENT_VERSIONS
12.2.2
-
APPS.PA_DELIVERABLE_UTILS dependencies on PA_BILLING_WRKBNCH_EVENTS
12.2.2
-
APPS.PA_DELIVERABLE_UTILS dependencies on PA_BILLING_WRKBNCH_EVENTS
12.1.1
-
PACKAGE BODY: APPS.PA_ACTIONS_PVT
12.1.1
-
PACKAGE BODY: APPS.PA_ACTIONS_PVT
12.2.2
-
PACKAGE BODY: APPS.PA_DELIVERABLE_PVT
12.1.1
-
APPS.PA_ACTIONS_PVT dependencies on PA_ACTIONS_PVT
12.2.2