[Home] [Help]
[Dependency Information]
Object Name: | PA_BASE_BUDGET_BY_RESOURCE_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A supplementary view used to simplify forms coding.
Warning: Oracle does not recommend you query or alter datausing this view. It may change dramatically in subsequent minor or major
releases.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
BUDGET_VERSION_ID | NUMBER | (15) | Yes | The identifier of the budget version |
PROJECT_ID | NUMBER | (15) | Yes | The identifier of the project for which the budget is entered |
TASK_ID | NUMBER | (15) | Yes | The identifier of the task for which the budget is entered |
BUDGET_TYPE_CODE | VARCHAR2 | (30) | The type of budget | |
RESOURCE_LIST_MEMBER_ID | NUMBER | (15) | Yes | The identifier of the resource list member used by the budget |
RESOURCE_LIST_ID | NUMBER | (15) | Yes | The identifier of the resource list used by the budget |
RESOURCE_ID | NUMBER | (15) | Yes | The identifier of the resource used by the budget |
RESOURCE_ACCUMULATED_FLAG | VARCHAR2 | (1) | Yes | Flag that indicates if the budget version has been accumulated |
RAW_COST | NUMBER | The raw cost of the budget assigned for the resource | ||
BURDENED_COST | NUMBER | The burdened cost of the budget assigned for the resource | ||
REVENUE | NUMBER | The revenue of the budget assigned for the resource | ||
QUANTITY | NUMBER | The quantity of the budget assigned for the resource | ||
LABOR_QUANTITY | NUMBER | The labor quantity of the budget assigned for the resource | ||
UNIT_OF_MEASURE | VARCHAR2 | (30) | The unit of measure of the budget assigned for the resource |
Cut, paste (and edit) the following text to query this object:
SELECT BUDGET_VERSION_ID
, PROJECT_ID
, TASK_ID
, BUDGET_TYPE_CODE
, RESOURCE_LIST_MEMBER_ID
, RESOURCE_LIST_ID
, RESOURCE_ID
, RESOURCE_ACCUMULATED_FLAG
, RAW_COST
, BURDENED_COST
, REVENUE
, QUANTITY
, LABOR_QUANTITY
, UNIT_OF_MEASURE
FROM APPS.PA_BASE_BUDGET_BY_RESOURCE_V;
|
|
|