Search Results pa_online_projects_v
Overview
PA_ONLINE_PROJECTS_V is a customizable view owned by the APPS schema within the Oracle E-Business Suite Projects (PA) module. It is validated and available in both EBS 12.1.1 and 12.2.2. Its purpose is to expose a curated, security-filtered list of projects for consumption by the Self Service Time application, allowing employees to select chargeable projects when entering time and expense information. Because the view is explicitly described as customizable, Oracle permits implementers to modify its definition without invalidating standard functionality, which makes it a frequent extension point in Projects and Time implementations. Note that the actual runtime behavior of the view depends on referenced base objects such as FND_PROFILE, HR_GENERAL, HR_SECURITY, and PA_CROSS_BUSINESS_GRP, which supply profile option values, HR organizational context, and cross-business-group security rules respectively.
Underlying Base Objects
The view is defined primarily over PA_PROJECTS_EXPEND_V, itself a view in the Projects schema that resolves expenditure-related project attributes. PA_ONLINE_PROJECTS_V selects a DISTINCT projection of that source, and additionally resolves the carrying-out organization name via a correlated subquery against HR_ORGANIZATION_UNITS. The documented referenced base objects also include the packages FND_PROFILE, HR_GENERAL, HR_SECURITY, PA_CROSS_BUSINESS_GRP, and PA_PROJECT_UTILS. These are not directly present in the view text excerpt but are invoked indirectly through PA_PROJECTS_EXPEND_V, which uses them to enforce security and derive profile-driven behavior. HR_SECURITY, for example, applies organization-based security so that a user only sees projects belonging to organizations they are authorized to access. FND_PROFILE supplies values for relevant profile options, PA_CROSS_BUSINESS_GRP enforces cross-business-group filtering, and PA_PROJECT_UTILS provides project-related utility logic.
Key Columns
- PROJECT_ID — Unique numeric identifier for the project; used as the primary key in downstream joins and pickers.
- PROJECT_NUMBER — The user-facing project number, typically displayed first in Self Service Time project lists.
- PROJECT_NAME — Descriptive name of the project.
- PROJECT_TYPE — Classification of the project (for example, billable or internal), useful for grouping and defaulting behavior.
- START_DATE and COMPLETION_DATE — Effective date range of the project; used to filter selectable projects to those active during the entered time period.
- CARRYING_OUT_ORGANIZATION_ID — Identifier of the organization responsible for carrying out the project.
- CARRYING_OUT_ORGANIZATION_NAME — Resolved name of that organization, obtained via the correlated subquery against HR_ORGANIZATION_UNITS.
Common Use Cases and Queries
Typical uses include driving project LOVs in Self Service Time, validating chargeable project selections, and building custom time-entry validations or reports. Because the view is expected to be customized, many implementations add attributes such as project manager, customer, or task references. A basic query to retrieve visible projects is:
SELECT project_number, project_name, project_id, project_type,
start_date, completion_date, carrying_out_organization_name
FROM apps.pa_online_projects_v
WHERE sysdate BETWEEN start_date AND NVL(completion_date, sysdate);
A query filtering by organization is:
SELECT project_number, project_name
FROM apps.pa_online_projects_v
WHERE carrying_out_organization_id = :org_id;
Because HR_SECURITY and profile-driven logic are applied within the underlying views and packages, results are automatically restricted to projects the querying user is authorized to see, so the view is generally safe to expose in custom self-service pages without additional security predicates.
-
View: PA_ONLINE_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_PROJECTS_V, object_name:PA_ONLINE_PROJECTS_V, status:VALID, product: PA - Projects , description: Customizable view for projects used in Self Service Time application. PA_ONLINE_PROJECTS_V is a customizable view for Self Service Time application , implementation_dba_data: APPS.PA_ONLINE_PROJECTS_V ,
-
View: PA_ONLINE_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_PROJECTS_V, object_name:PA_ONLINE_PROJECTS_V, status:VALID, product: PA - Projects , description: Customizable view for projects used in Self Service Time application. PA_ONLINE_PROJECTS_V is a customizable view for Self Service Time application , implementation_dba_data: APPS.PA_ONLINE_PROJECTS_V ,
-
VIEW: APPS.HXT_PROJECTS_V
12.2.2
-
VIEW: APPS.HXT_PROJECTS_V
12.1.1
-
VIEW: APPS.PA_ONLINE_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_PROJECTS_V, object_name:PA_ONLINE_PROJECTS_V, status:VALID,
-
VIEW: APPS.PA_ONLINE_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_PROJECTS_V, object_name:PA_ONLINE_PROJECTS_V, status:VALID,
-
View: HXT_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_PROJECTS_V, object_name:HXT_PROJECTS_V, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXT_PROJECTS_V ,
-
View: HXT_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_PROJECTS_V, object_name:HXT_PROJECTS_V, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXT_PROJECTS_V ,
-
PACKAGE BODY: APPS.HXC_APPROVAL_REPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HXC_APPROVAL_REPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.HXC_APPROVAL_REPORT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HXC_APPROVAL_REPORT_PKG, status:VALID,
-
View: PA_SST_VIEW_PROJECTS_TASKS_V
12.1.1
product: PA - Projects , description: For View Projects and Tasks function in SST , implementation_dba_data: Not implemented in this database ,
-
View: PA_SST_VIEW_PROJECTS_TASKS_V
12.2.2
product: PA - Projects , description: For View Projects and Tasks function in SST , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.HXT_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_PROJECTS_V, object_name:HXT_PROJECTS_V, status:VALID,
-
VIEW: APPS.HXT_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXT_PROJECTS_V, object_name:HXT_PROJECTS_V, status:VALID,
-
APPS.HXC_APPROVAL_REPORT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_OTC_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_OTC_API, status:VALID,
-
PACKAGE: APPS.PA_CROSS_BUSINESS_GRP
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_CROSS_BUSINESS_GRP, status:VALID,
-
PACKAGE: APPS.PA_CROSS_BUSINESS_GRP
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_CROSS_BUSINESS_GRP, status:VALID,
-
APPS.HXC_EXT_TIMECARD SQL Statements
12.1.1
-
APPS.HXC_APPROVAL_REPORT_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.PA_PROJECT_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_PROJECT_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PA_OTC_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_OTC_API, status:VALID,
-
APPS.HXC_EXT_TIMECARD SQL Statements
12.2.2
-
PACKAGE: APPS.PA_PROJECT_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_PROJECT_UTILS, status:VALID,
-
VIEW: APPS.PA_PROJECTS_EXPEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_EXPEND_V, object_name:PA_PROJECTS_EXPEND_V, status:VALID,
-
VIEW: APPS.PA_PROJECTS_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_EXPEND_V, object_name:PA_PROJECTS_EXPEND_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.HXC_APPROVAL_REPORT_PKG
12.1.1
-
APPS.HXC_APPROVAL_REPORT_PKG dependencies on PA_ONLINE_PROJECTS_V
12.1.1
-
APPS.PA_OTC_API dependencies on PA_ONLINE_PROJECTS_V
12.1.1
-
PACKAGE BODY: APPS.HXC_APPROVAL_REPORT_PKG
12.2.2
-
APPS.HXC_APPROVAL_REPORT_PKG dependencies on PA_ONLINE_PROJECTS_V
12.2.2
-
APPS.PA_OTC_API dependencies on PA_ONLINE_PROJECTS_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.PA_OTC_API SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.PA_OTC_API SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
APPS.PA_OTC_API dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.PA_OTC_API dependencies on PA_PROJECTS
12.1.1
-
APPS.PA_OTC_API dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PA_OTC_API dependencies on PA_PROJECTS
12.2.2
-
PACKAGE BODY: APPS.HXC_EXT_TIMECARD
12.1.1
-
PACKAGE BODY: APPS.HXC_EXT_TIMECARD
12.2.2
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
eTRM - HXT Tables and Views
12.2.2
description: A location to put an employee's work shifts on which all earnings are based. ,
-
eTRM - HXT Tables and Views
12.1.1
description: A location to put an employee's work shifts on which all earnings are based. ,