Hi Tidi,
Please use the PMA_FINANCIAL_VALUES table which is stored the cost information (Cost Plan & Budget Plan) based on monthly and also cost information are stoed in ODF_SSL_CST_DTL_COST. Please use the below query, to fetch the information about cost plan / budget plan cost details.
if you have any query, please let me know.
SELECT PMA.* FROM PMA_FINANCIAL_VALUES PMA, INV_INVESTMENTS INV where INV.CODE = '090000008' and INV.ODF_OBJECT_CODE = 'project' AND PMA.OBJECT_ID = INV.ID AND PMA.FINANCIAL_TYPE IN ('PLAN_CST')
SELECT PMA.* FROM PMA_FINANCIAL_VALUES PMA, INV_INVESTMENTS INV where INV.CODE = '090000008' and INV.ODF_OBJECT_CODE = 'project' AND PMA.OBJECT_ID = INV.ID AND PMA.FINANCIAL_TYPE IN ('BDGT_CST')
Select * from ODF_SSL_CST_DTL_COST
Thanks
Senthil.