Clarity

 View Only
  • 1.  Which table stores rate matrix related information.

    Posted Jan 30, 2017 12:02 PM

    Hi All,

    I would like to know that table name which stores Rate Matrix Information.

    Thanks.



  • 2.  Re: Which table stores rate matrix related information.

    Posted Jan 30, 2017 12:32 PM

    Go to the Tech Ref in Ca PPM documentation and start wit Matrix management



  • 3.  Re: Which table stores rate matrix related information.

    Posted Feb 21, 2017 01:39 PM

    Hi ,

    I want to get rates for the following resource class shown in the below screenshot, so tables i should use for join.

    Please help me out in this.

     

    Thanks.



  • 4.  Re: Which table stores rate matrix related information.

    Broadcom Employee
    Posted Jan 31, 2017 10:00 AM

    Here are the few tables 

     

     

    PPA_MATRIX is the main table and then you can refer via technical ref as Martti mentioned 

     

    Regards

    Suman Pramanik 



  • 5.  Re: Which table stores rate matrix related information.

    Posted Jan 31, 2017 01:27 PM

    You'll obviously have to tweak this based on what your matrix columns are, but, here is a sample query that you can use that may be helpful:

     

    select pmv.fromdate "From Date"
    , pmv.todate"To Date"
    , pmv.Value1 "Department"
    , pmv.value2 "Role Code"
    , (SELECT FULL_NAME FROM SRM_RESOURCES WHERE unique_name = pmv.value2) "Resource Role"
    , pmv.value3 "Input Type Code"
    , pmv.value4 "Resource Class"
    , pmv.numval1 "Rate"
    , pmv.numval2 "Standard Cost"
    , pmv.numval3 "Actual Cost"
    , pmv.strval1 "Cost Plus Code"
    , pmv.matrix_currency_code "Currency Code"
    , pmv.created_date "Created Date"
    , (SELECT FULL_NAME FROM SRM_RESOURCES WHERE user_id = pmv.created_by) "Created By"
    , pmv.last_updated_date "Last Updated Date"
    , (SELECT FULL_NAME FROM SRM_RESOURCES WHERE user_id = pmv.last_updated_by) "Last Updated By"
    from ppa_matrixvalues pmv
    where pmv.matrixkey = '5000000'