Search Results pa_organizations_v
Overview
PA_ORGANIZATIONS_V is a public APPS-schema view in the Oracle E-Business Suite Projects (PA) module. Its purpose is to expose organization records from Oracle Human Resources in a form suited to Projects reporting and integration. In the documented metadata the view is labeled simply "View: PA_ORGANIZATIONS_V," with a status of VALID and an owner of APPS, confirming it is a seeded, supported database object rather than a customer-defined customization.
The view projects the core descriptive attributes of organization units — identifier, name, business group, effective dates, and type — and appends a derived column, WITHIN_CURRENT_OPERATING_UNIT. This last attribute is populated at runtime through HR security logic rather than stored on the organization record itself, which is the principal reason a view exists instead of direct table access. The view therefore serves as a stable, security-aware read interface for Projects code, concurrent programs, and external integrations that need the set of organizations visible in the user's current operating unit.
Underlying Base Objects
The documented ETRM metadata for 12.2.2 lists the base objects referenced by the view as HR_ORGANIZATION_UNITS (a view), HR_GENERAL (a package), and HR_SECURITY (a package). The published view text confirms the core projection:
- SELECT ORG.ORGANIZATION_ID, ORG.NAME, ORG.BUSINESS_GROUP_ID, ORG.DATE_FROM, ORG.DATE_TO, ORG.TYPE, NULL FROM HR_ORGANIZATION_UNITS ORG
At the stored level, HR_ORGANIZATION_UNITS is itself a view over HR_ALL_ORGANIZATION_UNITS. The remaining NULL position in the SELECT list corresponds to WITHIN_CURRENT_OPERATING_UNIT; in the shipped definition this is resolved by calling the HR security and general utility packages (notably HR_SECURITY and HR_GENERAL) rather than being read from a column. The net effect is a lightweight wrapper that inherits standard HR organization attributes while adding operating-unit scoping.
Key Columns
- ORGANIZATION_ID — Primary key of the organization unit. This is the value stored on Projects entities (for example projects, tasks, and expenditure organizations) and the join key back to HR.
- NAME — The organization's display name as maintained in the HR organization hierarchy.
- BUSINESS_GROUP_ID — The business group that owns the organization; organizations with a NULL business group are typically operating units or internal classifications.
- DATE_FROM / DATE_TO — Effective start and end dates of the organization record, used to determine whether an organization is active as of a given date.
- TYPE — The organization classification code, distinguishing business groups, operating units, inventory organizations, and other HR organization types.
- WITHIN_CURRENT_OPERATING_UNIT — A derived indicator (typically 'Y' or 'N') showing whether the organization falls within the operating unit of the current session, based on HR security profiles.
Common Use Cases and Queries
The view is most often used to populate organization-related list of values, to validate that a selected organization is visible within the current operating unit, and to join Projects transaction data to organization names for reporting. A typical query lists active organizations in the present operating unit:
- SELECT organization_id, name, business_group_id, date_from, date_to
FROM pa_organizations_v
WHERE within_current_operating_unit = 'Y'
AND SYSDATE BETWEEN NVL(date_from, SYSDATE)
AND NVL(date_to, SYSDATE);
Because WITHIN_CURRENT_OPERATING_UNIT depends on HR security context, results differ by responsibility and operating unit; queries run in a background or multi-org session may not return the expected rows unless the security context is initialized. The view is best treated as a reporting and lookup aid — persistent references should store ORGANIZATION_ID, not the derived indicator, since that value is context-dependent and not part of the underlying organization record.
-
View: PA_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ORGANIZATIONS_V, object_name:PA_ORGANIZATIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ORGANIZATIONS_V ,
-
View: PA_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ORGANIZATIONS_V, object_name:PA_ORGANIZATIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ORGANIZATIONS_V ,
-
View: PA_PTE_ORGS_V
12.1.1
product: PA - Projects , description: View of organizations data from PA - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PA_PTE_ORGS_V
12.2.2
product: PA - Projects , description: View of organizations data from PA - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.PA_YEAR_END_ROLLOVER_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_YEAR_END_ROLLOVER_PKG, status:VALID,
-
PACKAGE: APPS.PA_YEAR_END_ROLLOVER_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_YEAR_END_ROLLOVER_PKG, status:VALID,
-
PACKAGE BODY: APPS.PA_PROJECT_CHECK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJECT_CHECK_PVT, status:VALID,
-
PACKAGE BODY: APPS.PATC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PATC, status:VALID,
-
PACKAGE BODY: APPS.PA_TRANSACTIONS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_TRANSACTIONS, status:VALID,
-
PACKAGE BODY: APPS.PA_YEAR_END_ROLLOVER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_YEAR_END_ROLLOVER_PKG, status:VALID,
-
PACKAGE BODY: APPS.PA_YEAR_END_ROLLOVER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_YEAR_END_ROLLOVER_PKG, status:VALID,
-
PACKAGE BODY: APPS.PA_TRANSACTIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_TRANSACTIONS, status:VALID,
-
PACKAGE BODY: APPS.PA_PROJECT_CHECK_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJECT_CHECK_PVT, status:VALID,
-
PACKAGE BODY: APPS.PATC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PATC, status:VALID,
-
VIEW: APPS.PA_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ORGANIZATIONS_V, object_name:PA_ORGANIZATIONS_V, status:VALID,
-
VIEW: APPS.PA_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ORGANIZATIONS_V, object_name:PA_ORGANIZATIONS_V, status:VALID,
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID,
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID,
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.1.1
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.2.2
-
View: PA_QUERY_RES_LIST_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: This view displays all the Resource List Members which have been defined for a Resource List , implementation_dba_data: APPS.PA_QUERY_RES_LIST_MEMBERS_V ,
-
View: PA_QUERY_RES_LIST_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: This view displays all the Resource List Members which have been defined for a Resource List , implementation_dba_data: APPS.PA_QUERY_RES_LIST_MEMBERS_V ,
-
APPS.PA_PROJECT_CHECK_PVT SQL Statements
12.1.1
-
APPS.PA_PROJECT_CHECK_PVT SQL Statements
12.2.2
-
APPS.PATC SQL Statements
12.1.1
-
APPS.PA_YEAR_END_ROLLOVER_PKG dependencies on PA_ORGANIZATIONS_V
12.2.2
-
APPS.PA_TRANSACTIONS dependencies on PA_ORGANIZATIONS_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.PA_YEAR_END_ROLLOVER_PKG dependencies on PA_ORGANIZATIONS_V
12.2.2
-
APPS.PA_YEAR_END_ROLLOVER_PKG dependencies on PA_ORGANIZATIONS_V
12.1.1
-
APPS.PATC dependencies on PA_ORGANIZATIONS_V
12.1.1
-
APPS.PATC dependencies on PA_ORGANIZATIONS_V
12.2.2
-
APPS.PA_TRANSACTIONS dependencies on PA_ORGANIZATIONS_V
12.2.2
-
APPS.PA_PROJECT_CHECK_PVT dependencies on PA_ORGANIZATIONS_V
12.1.1
-
APPS.PA_YEAR_END_ROLLOVER_PKG dependencies on PA_ORGANIZATIONS_V
12.1.1
-
APPS.PA_PROJECT_CHECK_PVT dependencies on PA_ORGANIZATIONS_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.GMS_TRANSACTIONS SQL Statements
12.1.1
-
APPS.PATC SQL Statements
12.2.2
-
APPS.GMS_TRANSACTIONS SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
APPS.PA_TRANSACTIONS SQL Statements
12.1.1
-
APPS.PA_TRANSACTIONS SQL Statements
12.2.2
-
APPS.PA_TRANSACTIONS dependencies on DUAL
12.2.2
-
APPS.PA_TRANSACTIONS dependencies on DUAL
12.1.1
-
APPS.PA_PROJECT_CHECK_PVT dependencies on PA_STD_BILL_RATE_SCHEDULES
12.2.2
-
APPS.PA_PROJECT_CHECK_PVT dependencies on PA_STD_BILL_RATE_SCHEDULES
12.1.1