[Home] [Help]
[Dependency Information]
Object Name: | PA_PROJ_WBS_VIEW |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A public view which may be useful for custom reporting or other data
requirements.
PA_PROJ_WBS_VIEW is a view that displays project tasks as part of
the project work breakdown structure. The task name and numbers are
indented to illustrate the task level and position in the work
breakdown structure.
.
.
The view also displays basic task information, including task start
and completion dates, task description, and the task manager.
.
.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
PROJECT_ID | NUMBER | (15) | Yes | Project identifier |
PROJECT_NUMBER | VARCHAR2 | (25) | Yes | Project number |
PROJECT_NAME | VARCHAR2 | (30) | Yes | Project name |
TASK_ID | NUMBER | (15) | Yes | Task identifier |
TASK_NUMBER | VARCHAR2 | (25) | Yes | Task number |
TASK_NAME | VARCHAR2 | (20) | Yes | Task name |
INDENTED_TASK_NUMBER | VARCHAR2 | (4000) | Task number indented based on the level in the work breakdown structure | |
INDENTED_TASK_NAME | VARCHAR2 | (4000) | Idented task name based on the level in the work breakdown structure | |
PARENT_TASK_ID | NUMBER | (15) | Identifier of the task that is the parent of the task in the work breakdown structure | |
DESCRIPTION | VARCHAR2 | (250) | Description of the task | |
WBS_LEVEL | NUMBER | (3) | Yes | WBS level of the task in the work breakdown structure |
TASK_START_DATE | DATE | Task start date | ||
TASK_COMPLETION_DATE | DATE | Task completion date | ||
TASK_MANAGER_PERSON_ID | NUMBER | (9) | Identifier of the employee that manages the task | |
TASK_MANAGER_NAME | VARCHAR2 | (240) | Full name of the employee that manages the task |
Cut, paste (and edit) the following text to query this object:
SELECT PROJECT_ID
, PROJECT_NUMBER
, PROJECT_NAME
, TASK_ID
, TASK_NUMBER
, TASK_NAME
, INDENTED_TASK_NUMBER
, INDENTED_TASK_NAME
, PARENT_TASK_ID
, DESCRIPTION
, WBS_LEVEL
, TASK_START_DATE
, TASK_COMPLETION_DATE
, TASK_MANAGER_PERSON_ID
, TASK_MANAGER_NAME
FROM APPS.PA_PROJ_WBS_VIEW;
APPS.PA_PROJ_WBS_VIEW is not referenced by any database object
|
|
|