Clarity

Expand all | Collapse all

starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

  • 1.  starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 18, 2014 09:18 AM

    starting 13.2 pma_financial_values is gone.

    this table stores aggregated values of planned\budgeted item per period (e.g. month).

    do you know which table has replaced it?

    thanks



  • 2.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?



  • 3.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 18, 2014 04:12 PM

    Prior to 13.2 it is like this

     

    In v13.2 it is like this

     

    So my guess is

    PFM_CLOB_CURVES

    This table contains timesliced values for portfolio attributes.

     

    That is the data that was in PM_FINANCIAL_VALUES

    does not exist any more in v13.2 or after upgrade to v13.2.

    The respective values for the new portfolio data modet would be in the blobs as before, but in v13.2 you do not have access to them any more (If you look at the posts by Jörgen and others)



  • 4.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 04:41 AM

    hi,

    what we would like to have is a table (like the old pma_financial_values) that stores for each month the budget\planned\actual values.

    this is for reporting reasons against the project financial plans.

    say that I need just for January-October 2014 the planned value and in the same query also the actual in that period.

    how do I achieve this result, after 13.2?

    the change\impact guide doenst help very much.

     

    thanks,

    Andrea



  • 5.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 04:54 AM

    Hello Andrea,

     

    From 13.2, there is no table wit consoildated financial data. The data is stored in Clobs and timslicing stores in slice tables. You might have to query for the information. Please see the following technical document for further details.

     

    http://www.ca.com/us/support/ca-support-online/product-content/knowledgebase-articles/tec440146.aspx

     

    Regards

    Chandrani



  • 6.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 05:03 AM

    Just in case Andrea is unable to access the link -

     

     

    Clarity: Can you provide more details regarding the Financial Planning Slice Tables

    Document ID:  TEC440146
    Last Modified Date:  11/20/2014
      Hide Technical Document Details

    • Products
      • CA PPM
      • CA Governance, Risk & Compliance Manager
    • Releases
      • CA PPM:Release:12.1
      • CA PPM:Release:13.0
      • CA PPM:Release:13.0.1
      • CA PPM:Release:13.1
      • CA PPM:Release:13.2
      • CA PPM:Release:13.3
      • CA PPM:Release:14.1
    • Components
      • CLARITY HOSTED FINANCIALS, TIME & DATA MANAGEMENT
      • CLARITY ON DEMAND FINANCIALS, TIME & DATA MANAGEMENT
      • CLARITY PPM FINANCIALS, TIME & DATA MANAGEMENT

     

    Description:

    Since documentation is lacking regarding the Financial Planning Slice tables, can you please let us know more information about the tables that store the detailed financial planning data for Cost Plans, Benefit Plans and Budget Plans?

    Solution:

    The FIN_PLANS table stores all the financial plan-to-investment relationship.

    There are two types of tables that hold the time-scaled values (TSV) data for each cell within the detailed financial plans. The tables that are named like ODF_SSL_* contain the slice values for the TSV. The tables that are named like ODF_SL_* contain internal, system-defined and user-defined sliced values for financial detailed plans. These tables are dependent on a successful 'Time Slicing' job completion.

    Sliced Data
    The ODF_SL tables are used to display data in the Investment > Hierarchy > Detail View. For ensuring that updated values are reflected on these views, execute the 'Time Slicing' job.

    TSV Data
    The tables below link to the FIN_BENEFIT_PLAN_DETAILS which contains the Benefit Properties and reflect the time-scaled values that appear on the detailed financial plans. These tables do not depend on the 'Time Slicing' job.

     

    select id, request_name, table_name from prj_blb_slicerequests where request_name like '%benefitplandetail%::segment%

     

    Figure 1

    The tables below link to the FIN_PLAN_DETAILS for Cost Plans

     

    select id, request_name, table_name from prj_blb_slicerequests where request_name like '%costplandetail%::segment%' 

     

    Figure 2

    Below is a sample query that you can use to get the cell details for the 'Actual Benefit' value on a specific Benefit Plan.

    Based on the information provided above you can modify this query to get results for other cells and other plan types.

    For MSSQL - Actual Benefit Plan Data

    SELECT I.ID PROJECT_ID, I.NAME PROJECT_NAME, P.ID PLAN_ID , P.NAME PLAN_NAME, D.DETAIL DETAIL_NAME, ABFT.START_DATE, ABFT.SLICE, ROUND(ABFT.SLICE*(DATEDIFF(DAY, ABFT.START_DATE, ABFT.FINISH_DATE)),2) CALC_SLICE FROM ODF_SSL_BFT_DTL_ABFT ABFT, FIN_BENEFIT_PLAN_DETAILS D, FIN_PLANS P, INV_INVESTMENTS I WHERE ABFT.PRJ_OBJECT_ID = D.ID AND D.PLAN_ID = P.ID AND P.OBJECT_ID = 5001379 AND P.OBJECT_CODE ='PROJECT' AND P.OBJECT_ID = I.ID ORDER BY P.ID, P.NAME, D.DETAIL ;

     

    For Oracle - Actual Benefit Plan Data

    SELECT I.ID PROJECT_ID, I.NAME PROJECT_NAME, P.ID PLAN_ID , P.NAME PLAN_NAME, D.DETAIL DETAIL_NAME, ABFT.START_DATE, ABFT.SLICE, ROUND(ABFT.SLICE*(to_date(ABFT.FINISH_DATE) - to_date(ABFT.START_DATE)),2) CALC_SLICE FROM ODF_SSL_BFT_DTL_ABFT ABFT, FIN_BENEFIT_PLAN_DETAILS D, FIN_PLANS P, INV_INVESTMENTS I WHERE ABFT.PRJ_OBJECT_ID = D.ID AND D.PLAN_ID = P.ID AND P.OBJECT_ID = 5001379 AND P.OBJECT_CODE ='PROJECT' AND P.OBJECT_ID = I.ID ORDER BY P.ID, P.NAME, D.DETAIL ;

     

    NJ



  • 7.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 05:11 AM

    hi all,

     

    thanks for quick reply.

    I understand I need to query the SLICE table.

    but as for any other situation where I need to query the slice, this is DEPENDENT on the slice window.

    if the slice window is 1 year for example and I have a project spanning over 3 years, I cannot reuse the slice.

    do you agree?

    if not, how would you solve this ?

    creating a procedure that stores in a custom table the values of the slice like it was for PMA_FINANCIAL_VALUES?

     

    thanks



  • 8.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 05:19 AM

    "

    if the slice window is 1 year for example and I have a project spanning over 3 years, I cannot reuse the slice.

    do you agree?

    if not, how would you solve this ?

    "

     

    2 options (I guess) -

    1. Tweak the OOB slice

    2. Create a new slice

     

    In either of the cases, I would recommend consulting with support

     

    NJ



  • 9.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Jun 11, 2015 01:06 PM

    So I do not see slices for PFM_CLOB_CURVES? I meant Targets data seems not sliced? Am I missing something?



  • 10.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 05:01 AM

    Did you take a look at the "PFM_PLANS" table ?

     

    PFM_PLANS

    This table contains rows that describe alternative planning criteria.

    Column

    Description

    ID

    Specifies unique ID.

    PORTFOLIO_ID

    This column refers to the Id of the portfolio to which the plan belongs.

    CODE

    This column refers to the unique code of the plan.

    NAME

    This column refers to the name for the plan.

    DESCRIPTION

    This column refers to the description.

    START_DATE

    This column refers to the start date of the planning horizon.

    FINISH_DATE

    This column refers to the finish date of the planning horizo.

    IS_APPROVED

    This column refers to the indicator the plan is approved.

    TOTAL_COST_CURVE

    This column refers to the time varying data for total cost target.

    CAPITAL_COST_TARGET

    This column refers to the scalar value for capital cost.

    CAPITAL_COST_CURVE

    This column refers to the time varying data for capital cost target.

    OPERATING_COST_TARGET

    This column refers to the scalar value for operating cost.

    OPERATING_COST_CURVE

    This column refers to the time varying data for operating cost target.

    BENEFITS_TARGET

    This column refers to the scalar value for benefits.

    BENEFITS_CURVE

    This column refers to the benefits curve (NkCurve).

    RESOURCES_TARGET

    This column refers to the scalar value for number of resources.

    RESOURCES_CURVE

    This column refers to the time varying data for resources.

    CREATED_DATE

    his column contains the date the row was created.

    CREATED_BY

    This column contains the resource that created the row.

    LAST_UPDATED_DATE

    This column contains the date that the row was last updated.

    LAST_UPDATED_BY

    This column contains the resource that last updated the row.

     

    NJ



  • 11.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 05:02 AM

    PFM_PORTFOLIOS

    This table contain rows that describe portfolios.

    Column

    Description

    ID

    This column refers to the ID.

    NAME

    This column refers to the name.

    CODE

    This column refers to the unique code of the portfolio.

    DESCRIPTION

    This column refers to the description.

    START_DATE

    This column refers to the start date of the planning horizon.

    FINISH_DATE

    This column refers to the finish date of the planning horizon.

    CURRENCY_CODE

    This column refers to the currency code.

    CAPACITY_UNIT_TYPE

    This column refers to the hours vs FTE.

    IS_ACTIVE

    This column refers to the active flag.

    SYNCSCHEDULE

    This column refers to the text description of synchronization schedule.

    SYNCSCHEDULE_CRON

    This column refers to the cron string if provided.

    SYNC_ERROR

    The column contains error code if the sync job has failed.

    SYNC_DATE

    This column refers to the date of the last sync job execution.

    PLAN_OF_RECORD

    This column refers to the ID of the plan that is considered the plan of record.

    TOTAL_COST_CURVE

    This column refers to the time varying data for total cost target.

    CAPITAL_COST_TARGET

    This column refers to the scalar value for total cost target.

    CAPITAL_COST_CURVE

    This column refers to the time varying data for capital cost target.

    OPERATING_COST_TARGET

    This column refers to the scalar value for operating cost target.

    OPERATING_COST_CURVE

    This column refers to the time varying data for operating cost target.

    BENEFITS_TARGET

    Scalar value for benefits target.

    BENEFITS_CURVE

    This column refers to the time varying data for benefits target.

    RESOURCES_TARGET

    This column refers to the scalar value for resources target.

    RESOURCES_CURVE

    This column refers to the time varying data for resources target.

    COST_HEALTH

    This column refers to the risk metric for portfolio.

    GOAL_ALIGNMENT

    This column refers to the risk metric for portfolio.

    INNOVATION_LEVEL

    This column refers to the risk metric for portfolio.

    PROBABILITY_SUCCESS

    This column refers to the risk metric for portfolio.

    RESOURCE_HEALTH

    This column refers to the risk metric for portfolio.

    RISK

    This column refers to the risk metric for portfolio.

    SCHEDULE_HEALTH

    This column refers to the risk metric for portfolio.

    DEPARTMENT_ID

    This column refers to the reference to a specific department.

    CREATED_DATE

    This column refers to the date the portfolio was created.

    CREATED_BY

    This column refers to the resource that created the portfolio.

    LAST_UPDATED_DATE

    This column refers to the date the portfolio was last updated.

    LAST_UPDATED_DATE

    This column refers to the resource that last updated the portfolio

     

     

    NJ



  • 12.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 07:15 AM

    In v13.2 the portfolio contents are not automatically synced with the items that were included in the portfolio.

    That is the pfm_tables do not necessarily equal to the plans\budgets if they have evolved after the portfolio creation or the plan in the portfolio is a "what if" version.

     

    If you want to go the cumbersome custom path consider custom timevarying attributes. The special feature in them is that even if you define time ranges and values for those you can still slice them per day, per, week, month and so on even if your time range is different should those not meet your later reporting needs.



  • 13.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 07:34 AM

    hi,

    I didnt read the entire thread sorry.

     

    if you confirm me that those tables

    ODF_SSL_CST contain cost plans\budget data and are

    INDIPENDENT from the slicing job, I think we only need to query those tables and the problem is solved.

     

    am I right?

     

    thanks,

    andrea



  • 14.  Re: starting 13.2 pma_financial_values is gone. do you know which table has replaced it?

    Posted Dec 19, 2014 08:45 AM

    Looking at the PRJ_BLB_SLICEREQUEST table the ODF_SSL_ tables seem to be synchronous ie. sliced immediately.