PC_BUD_PEND_VW(SQL View) |
Index Back |
|---|---|
View of Active Cost BudgetThis view will summarize the active cost budget for each project from the PC Budgeting table. |
| SELECT A.BUSINESS_UNIT , A.PROJECT_ID , SUM(A.PC_BUDGET_AMOUNT) , A.CURRENCY_CD_PC FROM PS_PC_BUD_SUMMARY A , PS_PC_BUD_PLAN B WHERE A.BUSINESS_UNIT = B.BUSINESS_UNIT AND A.PROJECT_ID = B.PROJECT_ID AND A.PC_BUDGET_ID = B.PC_BUDGET_ID AND B.PC_BUD_TYPE = 'C' AND B.PC_BUDGET_STATUS = '1' GROUP BY A.BUSINESS_UNIT, A.PROJECT_ID, A.CURRENCY_CD_PC |
| # | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
|---|---|---|---|---|
| 1 | Character(5) | VARCHAR2(5) NOT NULL | Business Unit | |
| 2 | Character(15) | VARCHAR2(15) NOT NULL | Project Id ChartField | |
| 3 | PC_BUDGET_AMOUNT | Signed Number(28,3) | DECIMAL(26,3) NOT NULL | The budget amount in the currency of the Projects business unit. |
| 4 | CURRENCY_CD_PC | Character(3) | VARCHAR2(3) NOT NULL | Projects BU Currency |