Thanks Dave & Martti - I wanted to make sure I wasn't missing something. If neither of you two see 'em in the standard tables (we don't run the datamart), I'm going to assume it's not there as a column and it's time for calculating in the query.
According to the ERD, the PRJ_EV_HISTORY is where you should go for the pieces - BCWS, BCWP, ACWS & ACWP. As an example, the following query reproduces the data in the "object based portlet" view above.
SELECT
PM.FULL_NAME
, I.NAME
, I.STATUS_INDICATOR
, I.STATUS_COMMENT
, (EV.ITD_BCWP/EV.ITD_BCWS) AS SPI
, (EV.ITD_BCWP - EV.ITD_BCWS) AS SV
, (EV.ITD_BCWP/EV.ITD_ACWP) AS CPI
, (EV.ITD_BCWP - EV.ITD_ACWP) AS CV
, I.SCHEDULE_START
, I.SCHEDULE_FINISH
FROM INV_INVESTMENTS I
JOIN SRM_RESOURCES PM ON I.MANAGER_ID = PM.USER_ID
JOIN PRJ_EV_HISTORY EV ON I.ID = EV.PROJECT_ID
WHERE EV.OBJECT_TYPE = 'Project'
AND EV.PERIOD_INTERVAL IS NULL
AND I.ID = 5089718
Thanks!
.