Calculating turn-rates across multiple dimensions

hi,
I am having some problems calculating the turn-rates of e.g. inventory. The cube is 6 dimensional, with seperate dimensions for months (which aggregate to Quarters etc), year and scenario (other dims are accounts, organization and countries).
The turn-rates must be based on 12 month moving average revenue from the account dimension and must consider the three dimensions month, year and scenario (which have a member for actuals and several different forecast members).
The calculation must use
1) information from the months in the current year and months in the previous year.
2) In addition, the scenario dimensions must consider if it is a forecast, that it includes actuals from the past periods and use data from the forecast dimension for future periods.
At the moment I have problems getting the cube to do 2), while it has been possible to use IF functions in the outline to calculate 1). If I need to use IF functions in the outline for 2), it will be very complex and difficult to maintain, as I we have 13 different forecast versions in the scenario dimension.
Any help is highly appreciated.
Best
Soeren

Hi,
unfortunately, this purpose-built datamart was built within the company RPD. It has been deleted since then. These are the two reasons why I can't post it.
My advice is to take the time to read the help about how to build logical tables in the Administrator tool.
Here's a quick walkthrough:
- create your logical tables and join them in the business model diagram
- create dimensions (hierarchies) for all your dimension tables with at least a total level and a detail level. Thins can be done automatically by right-clicking the dimension table and selecting "Create Dimension"
- in the dimension tables, select the source table (in the source subfolder of the dimension table) and edit its properties : in the properties dialog box, select the content tab and in front of the dimension name, select the lowest (or apropriate) logical level
- in some complex BM (logical levels), it might also be necessary to apply similar settings to the fact table: This time, when you edit a fact table source, you will see the list of all dimensions available in the contents tab. There, for each dimension your fact table is related to, you will select the apropriate dimension level. if there isn't any join between you fact table and a given dimension, leave the logical level blank.
I hope this helps.
Ced.

Similar Messages

  • AWM Calculated Measure for Percent of Total Across Multiple Dimensions?

    I noticed that AWM has a Share function that gives me a percent total of a grain from a specific hierarchy's Top of Hierarchy, but is there any way to do that with multiple dimensions? For example, if I had a Share of Dimension X = 55% Where Time = 1/1/2013 and a Share of Dimension Y = 32% Where Time = 1/1/2013, then could I have a Share of both Dimension X and Dimension Y = 16% Where Time = 1/1/2013?

    I had used an alternate solution which is a bit more cumbersome using native OLAP_DML formulae/expression.
    The above expression using OLAP Expression Syntax is much better (if it works).
    I was not aware of this OLAP expression syntax when i needed to create a kpi for similar requirement.
    We had Qty measure and Share along dimension like "Qty - Share at Year level", "Qty - Share of Total Customer".
    We needed to get "Qty - Share at Total Customer, Year".
    Cube= SALESCUBE
    Base Meas = QTY
    Step 1) Create Measure which represents "Qty - Total Customer, Year" which will work in any reporting context ...
    Note: For time=day1/2/3/ within same year and customer=cust1/2/3/... or Total Customer, the expression result will be constant (result fixed for any dimension members/status along the 2 dimensions - TIME and CUST). Denominator Value changes each year since we have constrainted time dimension to the ancestor of current cell at YR level. If we choose anscestor at TOP level TOTTIME say then the value is fixed for all time dimension members/values.
    olap dml expression: QUAL(SALESCUBE_QTY, CUSTOMER limit(CUSTOMER to CUSTOMER_LEVELREL 'TCUST'), TIME limit(limit(TIME to ANCESTORS USING TIME_PARENTREL TIME(TIME TIME)) KEEP TIME_LEVELREL eq 'YR'))
    in awxml - this becomes:
    ETMeasureColumnName="QTY_TCUST_YR"
    Name="QTY_TCUST_YR"
    MeasureExpression="OLAP_DML_EXPRESSION('QUAL(SALESCUBE_QTY, CUSTOMER limit(CUSTOMER to CUSTOMER_LEVELREL ''TCUST''), TIME limit(limit(TIME to ANCESTORS USING TIME_PARENTREL TIME(TIME TIME)) KEEP TIME_LEVELREL eq ''YR''))', NUMBER)">
    <Classification
    Value="AwmDescriptionType=OLAP_DML_CALC"/>
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="Qty - Total Customer, Year">
    Step 2) Define the share measure explicitly since we have already calculated the denominator needed for composite share.
    Check for division by 0 error before performing the share calculation explicitly as Numerator= Qty (for current cell/reporting context) and Denominator = Qty - Total Customer, Year (from Step 1)
    olap dml expression: if SALESCUBE_QTY_TCUST_YR ne 0 then SALESCUBE_QTY / SALESCUBE_QTY_TCUST_YR else na
    in awxml - this becomes:
    ETMeasureColumnName="QTY_SHARE_TCUST_YR"
    Name="QTY_SHARE_TCUST_YR"
    MeasureExpression="OLAP_DML_EXPRESSION(&apos;if SALESCUBE_QTY_TCUST_YR ne 0 then SALESCUBE_QTY / SALESCUBE_QTY_TCUST_YR else na&apos;, NUMBER)">
    <Classification
    Value="AwmDescriptionType=OLAP_DML_CALC"/>
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="Qty - Share of Total Customer, Year">
    </Description>
    Report needs to use measure QTY_SHARE_TCUST_YR (Qty - Share of Total Customer, Year) defined in Step 2. It may be useful to expose/display intermediate measure QTY_TCUST_YR also so as to make the basis of calculation very clear to the user.
    Nick,
    If you customize above soln. to use Total Time, Total Prod and Total Organization (along 3 dimensions)... I am sure the fact table has a time dimension which should also be factored in in your calc/defn.
    If you have missed out the join to Time dimension from fact in your queries, in olap reporting terms, its similar to Time Dimension selection of Time level = TTIME Total Time (1 node at TOP).
    You need:
    Step 1) Qty - Total Time, Total Product and Total Org
    Step 2) Qty - Share of Total Time, Total Product and Total Org
    Then the example you gave should be covered via QTY and QTY_SHARE_TTIME_TPROD_TORG (Step 2)
    SUM(quantity)
    2875should be QTY, QTY_SHARE_TTIME_TPROD_TORG (=100%) at Time level = TTIME, Product level = TPROD, Org level = TORG
    SUM(quantity)
    345 [12% of all products sold]should be QTY, QTY_SHARE_TTIME_TPROD_TORG (=12% hopefully) at Time level = TTIME, Product level = PROD with report filter on product = 'CX-867054', Org level = TORG
    SUM(quantity)
    977 [34% of all products sold]should be QTY, QTY_SHARE_TTIME_TPROD_TORG (=34% hopefully) at Time level = TTIME, Product level = TPROD, Org level = STORE with report filter on store = 'NY_ALBA_013'
    SUM(quantity)
    88 [3.06% of all products sold]should be QTY, QTY_SHARE_TTIME_TPROD_TORG (=3.06% hopefully) at Time level = TTIME, Product level = PROD with report filter on product = 'CX-867054', Org level = STORE with report filter on store = 'NY_ALBA_013'
    HTH
    Shankar

  • Excel CUBESET across multiple dimensions returns #VALUE

    Simplified question:
    All the cubeset examples I'm finding seem to be limited to one "criteria"
    http://office.microsoft.com/en-us/excel-help/cubeset-function-HA010083019.aspx
    Ultimately I need a cubevalue that is based on multiple criteria. When I use a CUBEVALUE pointed to 4 different Cubeset cells, I get a #VALUE error.
    * Should I be trying to combine my sets before I feed them to the CUBEVALUE, or should it matter?
    * What conditions or circumstances would result in not being able to get a value from CUBEVALUE taking into account multiple CUBESET sources (I have independently identified that there are real values to return)
    * If it would be better to combine all the criteria in one CUBESET before feeding that to the CUBEVALUE, what is the syntax (bracket placement) for including more than one condition from other cells that each contain a single cubeset condition? e.g.
    =CUBESET("Cubename",({A1, A5, C10, B14}))
    Thank you!
    Note: two of my source cubesets are overlapping, I wouldn't think this is a problem- I'd expect the combination to work like a Venn diagram; one is "All members except APPLES", and the other is "All members except KIWI" so I'd expect
    the combination of the two to result in "All members except Apples OR Kiwi"... please clarify if that isn't correct

    Hi Keith,
    That seems the value is not getting fetched from the right place. This is a different behavior and to maintain only one issue on a single thread
    I would advise you to pursue the other thread you have just opened and will help us avoid duplication of the same issue.
    Please reach out to us if you have any questions on this issue and we will glad to work on it.
    Regards,
    Abhijeet.

  • How to set hierachy to drill across multiple dimensions?

    Hello
    I have a situation:
    There are 3 tables: Credit Manager Dim, Customer Dim and Sales Fact
    There are 3 columns: Credit Manager ID, Customer ID and Document Number (from sales fact).
    The request is to create a hierachy so that the report can drill from credit manager to Customers (for that credit manager) and then to all the document numbers for that customer.
    I think I will need to create one hierachy that uses these 3 columns in each of the level. However, the challenge now is that one dimensional hierachy can only accept columns from one dimension tables.
    Please advice
    Thank you

    Thanks for the reply Dbettinger.
    For now I am ignoring document number part for testing purpose. In my credit manager dim, the lowest level is detail level where credit manager code is assigned under (Credit Manager Code is key enabled for drill-down). I have set the 'prefer drill path' of this level to point to Customer Dim- Detail level (where customer ID is assigned) as you suggested.
    However, when I tried running the reports, the credit manager code column is still not drillable. I think it is because this column is already at the lowest level of credit manager dim hierarchy and BI server doesn't take the preferred path of deeper level (customer dim)..
    This is where I am stuck.
    Any idea on how to make it work?
    Thanks

  • Hierarchical Calculation of POC across Projects

    Hi All
    I m facing problems in calculation of POC across multiple projects in a specific hierarchy. So that all progress of multiple projects be reflected at the top level specific project. I had maintained the relationship across projects through subnetworks.
    When i run cne2. It calculates the progress of multiple projects. CNE5 represents the progress of all projects individually. I want to have the progress of all projects represented in one top level project.
    I want to use the Progress calculation through concept of summarization. For that i defined the hierarchy but i m still unable to use that hierarchy in progress analysis.
    Regards

    Ok i know it is way way late - try specifying the treecolumn

  • Forecast Roll-Over Script across multiple years

    Hello Experts,
    I currently have the below Script and Prompt but it only works for one Fiscal year and I need help changing it so that it can be used across multiple years, my issue is below:
    If I have project TEST and it started in 2013.011 and ends in 2014.004, I have forecast values for all periods so when I run the script I'm prompted to "select forecast year" and "select forecast version based on previous period"
    So when I run from 2013.11 (forecast version P11) to 2013.12 (forecast version P12) that works fine but it's not working to roll-over from 2013.012 to 2014.001
    Any help is much appreciated.
    Thx,
    Shane
    *****SCRIPT*****
    //%CATEGORY_SET% - contains P9, STARTMNTH = 10, PREVFC=P8
    *SELECT(%SM%,"[STARTMNTH]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //$YY$ - contain planning year selected by user from DM combobox
    *SELECT(%FCSTMNTH%,"[ID]",TIME,"[ID]>'$YY$.%SM%' AND [YEAR]='$YY$' AND [CALC]='N'")
    *SELECT(%ACTMNTH%,"[ID]",TIME,"[ID]<'$YY$.%SM%' AND [YEAR]='$YY$' AND [CALC]='N'")
    *SELECT(%PF%,"[PREVFCST]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //To copy FORECAST XX we use
    *XDIM_MEMBERSET F_CATEGORY=%PF%
    *XDIM_MEMBERSET TIME=$YY$.%SM%,%FCSTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    //To copy ACTUAL we use
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=%ACTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    *****PROMPT*****
    PROMPT(MESSAGE,"Create Forecast Based on Previous")
    PROMPT(COMBOBOX,%YY%,"Select Forecast Year:",0,,{2014,2015,2016,2017,2018})
    PROMPT(SELECTINPUT,%SELECTION%,,"Select the Forecast Version:","F_CATEGORY")
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SUSER,%USER%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPPSET,%APPSET%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPP,%APP%)
    INFO(%EQU%,=)
    INFO(%TAB%,;)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,TAB,%TAB%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,EQU,%EQU%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SELECTION,%SELECTION%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,LOGICFILENAME,FORECAST.LGF)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,REPLACEPARAM,YY%EQU%%YY%)

    OK - I'll try explain this another way, I have 2 records for "ACTUALS" in 2013 (this is DEV system)
    1st record - Project A-000001 / 2013.010 for $2000
    2nd record - Project A-000036 / 2013.012 for $5000
    Prompts
    PARAM - YY=2013
    DATA REGION - F_CATEGORY=P12
    Here's the Script:
    //%CATEGORY_SET% - contains P9, STARTMNTH = 10, PREVFC=P8
    *SELECT(%SM%,"[STARTMNTH]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //$YY$ - contain planning year selected by user from DM combobox
    *SELECT(%FCSTMNTH%,"[ID]",TIME,"[ID]>'$YY$.%SM%' AND [CALC]='N'")
    *SELECT(%ACTMNTH%,"[ID]",TIME,"[ID]<'$YY$.%SM%' AND [YEAR]='$YY$' AND [CALC]='N'")
    *SELECT(%PF%,"[PREVFCST]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //To copy FORECAST XX we use
    *XDIM_MEMBERSET F_CATEGORY=%PF%
    *XDIM_MEMBERSET TIME=$YY$.%SM%,%FCSTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    //To copy ACTUAL we use
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=%ACTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    RESULT
    PLS note that there is only 1 record for "ACTUAL" and that's the 1st record - Project A-000001 / 2013.010 for $2000
    2nd record - Project A-000036 / 2013.012 for $5000 is MISSING
    LGX:
    *XDIM_MEMBERSET F_CATEGORY=P11
    *XDIM_MEMBERSET TIME=2013.012,2014.001,2014.002,2014.003,2014.004,2014.005,2014.006,2014.007,2014.008,2014.009,2014.010,2014.011,2014.012,2015.001,2015.002,2015.003,2015.004,2015.005,2015.006,2015.007,2015.008,2015.009,2015.010,2015.011,2015.012,2016.001,2016.002,2016.003,2016.004,2016.005,2016.006,2016.007,2016.008,2016.009,2016.010,2016.011,2016.012,2017.001,2017.002,2017.003,2017.004,2017.005,2017.006,2017.007,2017.008,2017.009,2017.010,2017.011,2017.012,2018.001,2018.002,2018.003,2018.004,2018.005,2018.006,2018.007,2018.008,2018.009,2018.010,2018.011,2018.012,2019.001,2019.002,2019.003,2019.004,2019.005,2019.006,2019.007,2019.008,2019.009,2019.010,2019.011,2019.012,2020.001,2020.002,2020.003,2020.004,2020.005,2020.006,2020.007,2020.008,2020.009,2020.010,2020.011,2020.012
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P12)
    *ENDWHEN
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=2013.001,2013.002,2013.003,2013.004,2013.005,2013.006,2013.007,2013.008,2013.009,2013.010,2013.011
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P12)
    *ENDWHEN
    LOG:
    LOG BEGIN TIME:2014-03-14 09:36:23
    FILE:\ROOT\WEBFOLDERS\F_COUNCIL \ADMINAPP\Forecasting\TEST.LGF
    USER:096655
    APPSET:F_COUNCIL
    APPLICATION:Forecasting
    [INFO] GET_DIM_LIST(): I_APPL_ID="Forecasting", #dimensions=8
    F_CATEGORY,F_ENTITY,F_PERSON,F_PROJECT,F_SECTION,F_WBSE,MEASURES,TIME
    #dim_memberset=2
    F_CATEGORY:P11,1 in total.
    TIME:2013.012,2014.001,2014.002,2014.003,2014.004,...85 in total.
    REC :%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1235.46 ms. 285  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    CALCULATION TIME IN TOTAL :672.78 ms.
    285  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 285  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    F_CATEGORY    F_ENTITY    F_PERSON    F_PROJECT    F_SECTION    F_WBSE    TIME    SIGNEDDATA
    P12    4000    000000    A-000036    000    A-000036.1.01    2013.012    103.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.001    104.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.002    105.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.003    106.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.004    107.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.005    108.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.006    109.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.007    110.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.008    111.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.009    112.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.010    113.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.011    114.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.012    115.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.001    116.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.002    117.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.003    118.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.004    119.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.005    120.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.006    121.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2013.012    235.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.001    236.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.002    237.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.003    238.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.004    239.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.005    240.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.006    241.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.007    242.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.008    243.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.009    244.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.010    245.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.011    246.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.012    247.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.001    248.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.002    249.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.003    250.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.004    251.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.005    252.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.006    253.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2013.012    344.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.001    345.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.002    346.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.003    347.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.004    348.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.005    349.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.006    350.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.007    351.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.008    352.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.009    353.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.010    354.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.011    355.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.012    356.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.001    357.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.002    358.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.003    359.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.004    360.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.005    361.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.006    362.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2013.012    494.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.001    495.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.002    496.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.003    497.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.004    498.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.005    499.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.006    500.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.007    501.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.008    502.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.009    503.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.010    504.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.011    505.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.012    506.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.001    507.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.002    508.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.003    509.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.004    510.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.005    511.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.006    512.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2013.012    573.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.001    574.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.002    575.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.003    576.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.004    577.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.005    578.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.006    579.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.007    580.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.008    581.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.009    582.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.010    583.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.011    584.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.012    585.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.001    586.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.002    587.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.003    588.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.004    589.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.005    590.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.006    591.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2013.012    663.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.001    664.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.002    665.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.003    666.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.004    667.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.005    668.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.006    669.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.007    670.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.008    671.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.009    672.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.010    673.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.011    674.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.012    675.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.001    676.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.002    677.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.003    678.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.004    679.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.005    680.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.006    404.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2013.012    765.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.001    766.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.002    767.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.003    768.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.004    769.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.005    770.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.006    771.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.007    772.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.008    773.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.009    774.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.010    775.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.011    776.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.012    777.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.001    778.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.002    779.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.003    780.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.004    781.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.005    782.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.006    493.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2013.012    430.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.001    431.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.002    432.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.003    433.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.004    434.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.005    435.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.006    436.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.007    437.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.008    438.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.009    439.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.010    440.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.011    441.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.012    442.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.001    443.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.002    444.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.003    445.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.004    446.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.005    447.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.006    448.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2013.012    584.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.001    585.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.002    586.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.003    587.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.004    588.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.005    589.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.006    590.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.007    591.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.008    592.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.009    593.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.010    594.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.011    595.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.012    596.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.001    597.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.002    598.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.003    599.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.004    600.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.005    601.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.006    602.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2013.012    606.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.001    607.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.002    608.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.003    609.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.004    610.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.005    611.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.006    612.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.007    613.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.008    614.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.009    615.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.010    616.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.011    617.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.012    618.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.001    619.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.002    620.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.003    621.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.004    622.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.005    623.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.006    624.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2013.012    824.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.001    825.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.002    826.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.003    827.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.004    828.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.005    829.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.006    830.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.007    831.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.008    832.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.009    833.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.010    834.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.011    835.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.012    836.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.001    837.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.002    838.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.003    839.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.004    840.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.005    841.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.006    842.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2013.012    125.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.001    126.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.002    127.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.003    128.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.004    129.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.005    130.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.006    131.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.007    132.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.008    133.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.009    134.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.010    135.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.011    136.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.012    137.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.001    138.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.002    139.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.003    140.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.004    141.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.005    142.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.006    143.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2013.012    407.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.001    408.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.002    409.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.003    410.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.004    411.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.005    412.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.006    413.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.007    414.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.008    415.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.009    416.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.010    417.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.011    418.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.012    419.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.001    420.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.002    421.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.003    422.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.004    423.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.005    424.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.006    425.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2013.012    606.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.001    607.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.002    608.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.003    609.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.004    610.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.005    611.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.006    612.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.007    613.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.008    614.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.009    615.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.010    616.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.011    617.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.012    618.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.001    619.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.002    620.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.003    621.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.004    622.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.005    623.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.006    624.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2013.012    726.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.001    727.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.002    728.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.003    729.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.004    730.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.005    731.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.006    732.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.007    733.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.008    734.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.009    735.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.010    736.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.011    737.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.012    738.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.001    739.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.002    740.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.003    741.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.004    742.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.005    743.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.006    744.00
    285  RECORDS HAVE BEEN WRITTEN BACK.
    WRITING TIME :543.97  ms.
    [INFO] GET_DIM_LIST(): I_APPL_ID="Forecasting", #dimensions=8
    F_CATEGORY,F_ENTITY,F_PERSON,F_PROJECT,F_SECTION,F_WBSE,MEASURES,TIME
    #dim_memberset=2
    F_CATEGORY:ACTUAL,1 in total.
    TIME:2013.001,2013.002,2013.003,2013.004,2013.005,...11 in total.
    REC :%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1019.73 ms. 1  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    CALCULATION TIME IN TOTAL :140.35 ms.
    1  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 1  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    F_CATEGORY    F_ENTITY    F_PERSON    F_PROJECT    F_SECTION    F_WBSE    TIME    SIGNEDDATA
    P12    4000    000000    A-000001    000    A-000001.1.01    2013.010    2000.00
    1  RECORDS HAVE BEEN WRITTEN BACK.
    WRITING TIME :480.96  ms.
    SCRIPT RUNNING TIME IN TOTAL:5.07 s.
    LOG END TIME:2014-03-14 09:36:28
    Prompts
    PARAM - YY=2014
    DATA REGION - F_CATEGORY=P1
    RESULT
    PLS NOTE - The 2nd record "ACTUAL" - Project A-000036 / 2013.012 for $5000 is MISSING
    LGX:
    *XDIM_MEMBERSET F_CATEGORY=P12
    *XDIM_MEMBERSET TIME=2014.001,2014.002,2014.003,2014.004,2014.005,2014.006,2014.007,2014.008,2014.009,2014.010,2014.011,2014.012,2015.001,2015.002,2015.003,2015.004,2015.005,2015.006,2015.007,2015.008,2015.009,2015.010,2015.011,2015.012,2016.001,2016.002,2016.003,2016.004,2016.005,2016.006,2016.007,2016.008,2016.009,2016.010,2016.011,2016.012,2017.001,2017.002,2017.003,2017.004,2017.005,2017.006,2017.007,2017.008,2017.009,2017.010,2017.011,2017.012,2018.001,2018.002,2018.003,2018.004,2018.005,2018.006,2018.007,2018.008,2018.009,2018.010,2018.011,2018.012,2019.001,2019.002,2019.003,2019.004,2019.005,2019.006,2019.007,2019.008,2019.009,2019.010,2019.011,2019.012,2020.001,2020.002,2020.003,2020.004,2020.005,2020.006,2020.007,2020.008,2020.009,2020.010,2020.011,2020.012
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P1)
    *ENDWHEN
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P1)
    *ENDWHEN
    LOG:
    LOG BEGIN TIME:2014-03-14 09:40:55
    FILE:\ROOT\WEBFOLDERS\F_COUNCIL \ADMINAPP\Forecasting\TEST.LGF
    USER:096655
    APPSET:F_COUNCIL
    APPLICATION:Forecasting
    [INFO] GET_DIM_LIST(): I_APPL_ID="Forecasting", #dimensions=8
    F_CATEGORY,F_ENTITY,F_PERSON,F_PROJECT,F_SECTION,F_WBSE,MEASURES,TIME
    #dim_memberset=2
    F_CATEGORY:P12,1 in total.
    TIME:2014.001,2014.002,2014.003,2014.004,2014.005,...84 in total.
    REC :%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1342.07 ms. 270  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    CALCULATION TIME IN TOTAL :716.94 ms.
    270  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 270  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    F_CATEGORY    F_ENTITY    F_PERSON    F_PROJECT    F_SECTION    F_WBSE    TIME    SIGNEDDATA
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.001    104.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.002    105.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.003    106.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.004    107.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.005    108.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.006    109.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.007    110.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.008    111.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.009    112.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.010    113.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.011    114.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.012    115.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.001    116.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.002    117.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.003    118.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.004    119.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.005    120.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.006    121.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.001    236.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.002    237.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.003    238.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.004    239.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.005    240.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.006    241.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.007    242.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.008    243.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.009    244.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.010    245.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.011    246.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.012    247.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.001    248.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.002    249.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.003    250.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.004    251.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.005    252.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.006    253.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.001    345.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.002    346.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.003    347.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.004    348.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.005    349.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.006    350.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.007    351.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.008    352.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.009    353.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.010    354.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.011    355.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.012    356.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.001    357.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.002    358.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.003    359.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.004    360.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.005    361.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.006    362.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.001    495.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.002    496.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.003    497.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.004    498.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.005    499.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.006    500.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.007    501.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.008    502.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.009    503.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.010    504.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.011    505.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.012    506.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.001    507.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.002    508.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.003    509.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.004    510.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.005    511.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.006    512.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.001    574.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.002    575.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.003    576.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.004    577.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.005    578.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.006    579.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.007    580.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.008    581.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.009    582.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.010    583.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.011    584.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.012    585.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.001    586.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.002    587.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.003    588.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.004    589.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.005    590.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.006    591.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.001    664.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.002    665.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.003    666.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.004    667.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.005    668.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.006    669.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.007    670.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.008    671.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.009    672.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.010    673.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.011    674.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.012    675.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.001    676.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.002    677.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.003    678.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.004    679.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.005    680.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.006    404.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.001    766.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.002    767.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.003    768.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.004    769.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.005    770.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.006    771.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.007    772.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.008    773.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.009    774.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.010    775.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.011    776.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.012    777.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.001    778.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.002    779.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.003    780.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.004    781.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.005    782.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.006    493.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.001    431.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.002    432.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.003    433.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.004    434.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.005    435.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.006    436.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.007    437.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.008    438.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.009    439.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.010    440.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.011    441.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.012    442.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.001    443.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.002    444.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.003    445.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.004    446.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.005    447.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.006    448.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.001    585.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.002    586.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.003    587.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.004    588.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.005    589.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.006    590.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.007    591.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.008    592.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.009    593.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.010    594.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.011    595.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.012    596.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.001    597.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.002    598.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.003    599.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.004    600.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.005    601.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.006    602.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.001    607.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.002    608.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.003    609.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.004    610.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.005    611.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.006    612.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.007    613.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.008    614.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.009    615.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.010    616.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.011    617.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.012    618.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.001    619.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.002    620.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.003    621.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.004    622.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.005    623.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.006    624.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.001    825.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.002    826.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.003    827.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.004    828.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.005    829.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.006    830.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.007    831.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.008    832.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.009    833.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.010    834.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.011    835.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.012    836.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.001    837.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.002    838.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.003    839.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.004    840.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.005    841.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.006    842.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.001    126.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.002    127.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.003    128.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.004 

  • I want to set up a home network to be able to watch my movies and litsen to music across multiple platforms without keeping my laptop connected.

    I want to set up a home network to be able to watch my movies and litsen to music across multiple platforms.  I have movies purchased from itunes as well as movies from my DVD collection that i converted to an .m4v format.  I currently have these movies stored on an external harddrive. To watch a movie on my apple tv I have to ensure my external hard drive is connected to my macbook pro, then play the movie on my macbook pro and "mirror" it to my apple tv.
    Ideally I would like to be able to watch movies from my collection without having to have my laptop on and work from that.  Is it possible to navigate my collection from my Apple TV and play it on my Apple TV.  My macbook pro is the machine I primarily use for work and school it is quite the protological nuissance to have to hook all that up everytime I want to watch a movie.
    My thoughts are that I could take my old dekstop pc, attach an external hard drive to that and make that my "media storage".  If I were to do that would I then be able to watch movies as well as select which movie I want to watch from my library through my apple TV without my macbook pro being in the equation?  Or if I should desire to watch a movie from my library through my Macbook Pro, Iphone 4s, and ipad is that possible?  I basically want to set up my library to be accessible from any of my devices.
    My devices are; the previously mentioned Apple Tv, macbook pro, iphone 4s, ipad 3. I also have a desktop PC running windows 7, xbox 360 and playstation 3 (the xbox and PS3 would be nice if they could too but wouldnt break my heart as they are my roommate's and not mine so I rarely use them.)
    Thank you for any help/advice you guys may have!

    atv's can only access media from
    1. a computer which is turned on running itunes
    2. the internet
    no other options
    and NAS's which say they can work as itunes libs don't work

  • "Semi/Non additive measure with" : "LastChild Across All Dimension" OR "LastChild Across Time and MAX across All Other Dimension"

    Hey All
    I am using the SQL SERVER 2008R2 standard edition so please be mindful when posting any suggestion if that will work on this edition or not.
    Here is the situation: I have Cube with one fact table "Positions". Measure I am querying is "AUM" and Dimensions across user can query are combinations of {"Portfolio", "Security" and "Time"}.
    I am receiving the "AUM" values at "portfolio+Security+Time" level. AUM is actually the Portfolio level value. so sample data I receive would like this.
    PORTFOLIO SECURITY TME AUM
    A SEC1 JAN-1 100
    A SEC2 JAN-1 100
    B SEC1 JAN-1 200
    B SEC3 JAN-1 200
    A SEC1 JAN-2 300
    A SEC2 JAN-2 300
    B SEC1 JAN-2 400
    B SEC3 JAN-2 400
    So, as shown in above example , we received same "AUM" value for a given portfolio and time. (regardless of what security value is).  
    And as AUM is the snapshot values, we can not sum across time as well, so if user is looking across time we need to pick Last values.
    Now when user wants to view this data from cube, two different ways s/he wants to look at it.
    option one: AUM at port+sec+time level. that is same as shown above in example.
    option two: AUM at portfolio level only,  (notice that this is across time so results are picking values for time=JAN-2)
    PORTFOLIO AUM
    A 300
    B 400
    GRAND TOTAL 700
    I have applied the "LastChild" aggregation property to measure to achieve "Do no Sum across Time "behavior. but with this I also get "SUM Across Except time" and hence my AUM values get summed across Portfolio and security as
    well. I have also enable Time Intelligence to enable MTD, YTD calculations.
    I tried to add SCOPE statement for Security before and after the "time calculations" yet I am not able to achieve expected behavior.
    here is the calculated member definition, and scope statement i have tried.
    CREATE MEMBER
    CURRENTCUBE.[MEASURES].[AUMNetBaseCurrency] AS
    [Measures].[AUMNetBaseCurrency_Raw_Max],
    FORMAT_STRING = "#,##0.00 ;( #,##0.00 )",
    VISIBLE = 1 , DISPLAY_FOLDER = 'Position';
    After this I have MTD and YTD time calculation for few measures including AUM.
    I tried placing the following SCOPE for AUM before and after the Time calculations but it no difference in result, in fact it seems like it has no affect of scope at all due to the "LastChild" aggregate property applied on measure.
    SCOPE([MEASURES].[AUMNetBaseCurrency]);
    SCOPE([Security].[Symbol].[All]);
    THIS = MAX([Measures].[AUMNetBaseCurrency_Raw_Max]);
    END SCOPE;
    END SCOPE;
    so options I am thinking of but do not have clear idea how to implement those are:
    0) why my Security Scope Statement are not showing any effect, and can we do something about it?
    1) Can be change "SUM" behavior to "MAX" / "MIN" across all Dimension except time.
    2) Is there a way to implement "LastChild" across all dimension instead only across Time.
    3) Should I need to make any changes at Fact table level to achieve this ? I refer one Q&A in this forum that suggested to create such measure in different measure group but it doesn't have any clarification.
    Any help would be appreciated.
    Thanks
    Anup Shah

    hi,
    you will have to enable cache in your nqsconfig.ini file under the section
    # Query Result Cache Section
    [ CACHE ]
    ENABLE     = YES;
    cache seeding is also a mechanism through which the data would be updated in the cache.

  • Creating multiple vlans across multiple switches

    Hi All,
    How should I create multiple vlans across multiple switches?
    For instance, I have two (primary/redudant) layer 3 (core) switches and four layer 2 access switches (Cisco 2960) for the hosts, and given these are the vlans/subnets to be created. Should I do it in the core switches only and it would just propagate through the access via VTP?  Just trying to practice and learn.. Any help will be greatly appreciated:)
    VLAN 100: [DHCP-workstations]
    172.26.4.0/24
    172.26.5.0/24
    VLAN 200: [Servers]
    172.16.1.0/24
    172.16.2.0/24
    VLAN 300: [Printers]
    192.168.129.0/24
    192.168.130.0/24
    VLAN 800: [Management for switches/routers]
    10.160.1.0/24

    Hi
    You will have the SVI on the core. Set a VTP domain, make one of the cores as VTP server and rest of the switches as VTP clients. Once you do this, you won't have to login into each switch and create a vlan locally. The vlans will be automatically advertised from the VTP server to all the VTP clients.
    Thanks
    Ankur
    "Please rate the post if found useful"

  • How do I total across multiple Tables? Help!

    how do I total across multiple Tables? Help!
    I feel like a complete noob.

    Hi Marc,
    There is no function explicitly for that sort of array calculation in Numbers.
    My favorite way is to use a list of Table Names and the INDIRECT(ADDRESS) function combination to produce a SUM across tables. I'm making the assumption that you want to do something like adding up all the values in a particular cell of multiple tables.  For example "give me the total of all the A1 cells in tables T1, T2, T3 and T4".  For this I would use the formula:
    =INDIRECT(ADDRESS(1,1,1,,A))
    to grab the cell contents of the table names mentioned in column A of a summary table.  Once you have them collected in your summary table, add them up.
    Here's a screen shot...
    Hope that gives you an idea for approaching this problem.
    Jerry

  • Substitution Variable across two dimensions

    Hello,
    I was wondering if we could define a single substitution variable across two dimensions. For instance, we have two dimensions Year (FY10,FY11,FY12, etc) and Period (QTR1, JAN, FEB, MAR, QTR2...)
    I understand we can define a range of values in a single subvar such as &period is Jan:Dec.
    However, given the above two dimensions we would like something like this Jan.FY10:Dec.FY13. I know this would be easier if years and months belonged to the same dimension but they are two different dimensions. So, essentially we want to define a single subvar involving two dimensions.
    Please let me know, if this is possible on Essbase 9.
    Thank you.
    Edited by: user10678366 on Sep 15, 2010 9:56 AM

    Thanks for all your responses. As Gary and Srinivas pointed out @XRANGE definitely works with a subvar with a few limitations;
    1. Cannot be used in a FIX statement
    2. For accurate months across different years, the order of the subvar should be FY11->FEB, FY13->DEC and not not FEB->FY11, DEC->FY13 since in my db, the Period dimension is DENSE and appears before the YEARS dimension in the outline.
    3. It works in a IF statement
    However one lingering issue I have is with a @PRIOR statement on conjunction with @XRANGE within my IF statement:
    Note: subvar &RANGE = FY11->FEB, FY13->DEC
    STAT1(
    IF(@ISMBR(@XRANGE(&RANGE)))
    IF(STAT1 = 20)
    STAT1 = @PRIOR(STAT1)
    ENDIF
    ENDIF
    The problem is STAT1 gets calculated accurately for all months for that year. However, all months the following year donot get calculated. So, essentially the BEGBALANCE (also at level 0) doesnt get calculated for the next year. Here an illustration of before and after:
              FY11     FY12     FY13
    Stat1     BegBalance               
         Jan     #MI     #MI     #MI
         Feb     #MI     #MI     #MI
         Mar     #MI     #MI     #MI
         Apr     #MI     #MI     #MI
         May     #MI     #MI     #MI
         Jun     20     #MI     #MI
         Jul     #MI     #MI     #MI
         Aug     #MI     #MI     #MI
         Sep     #MI     #MI     #MI
         Oct     #MI     #MI     #MI
         Nov     #MI     #MI     #MI
         Dec     #MI     #MI     #MI
    Stat1     BegBalance     #MI     #MI     #MI
         Jan     #MI     #MI     #MI
         Feb     #MI     #MI     #MI
         Mar     #MI     #MI     #MI
         Apr     #MI     #MI     #MI
         May     #MI     #MI     #MI
         Jun     20     #MI     #MI
         Jul     20     #MI     #MI
         Aug     20     #MI     #MI
         Sep     20     #MI     #MI
         Oct     20     #MI     #MI
         Nov     20     #MI     #MI
         Dec     20     #MI     #MI
    The expected result is:
    Stat1     BegBalance     #MI     20     20
         Jan     #MI     20     20
         Feb     #MI     20     20
         Mar     #MI     20     20
         Apr     #MI     20     20
         May     #MI     20     20
         Jun     20     20     20
         Jul     20     20     20
         Aug     20     20     20
         Sep     20     20     20
         Oct     20     20     20
         Nov     20     20     20
         Dec     20     20     20
    So, essentially though the @XRANGE takes into account BegBalance and calculates for each year based on prior year->dec, which is good. However, introducing the @PRIOR doesnt calculate BegBalance. Looks like I dont have any option other than using @MDSHIFT instead of @PRIOR when it comes to using @PRIOR with @XRANGE.
    Unless I am incorrectly using the @PRIOR statement with @XRANGE. Please suggest.

  • SUN NIS Broadcast across multiple vlans

    We're big sun servers and clients shop. The problem is that NIS is not able to go across multiple vlans on a layer 3 switch. I have enable the forward-udp protcol sunrpc but it still doesn't work. Is anybody else ever run into this issue?

    This might help you. Use the Ip-helper adress along with the forward udp command. Look at this link under the IP- helper command. Should answer your question.
    http://www.cisco.com/en/US/partner/products/sw/iosswrel/ps1835/products_command_reference_chapter09186a0080087387.html#wp1018606
    If this helps please rate.

  • Multiple Dimensions In Oracle DBI

    hi i'm working on Oracle EBS ERP R12
    i have created lots of report in oracle dbi R12
    the dashboard output like this
    INV_NAME----qty---------rate
    HR C12----------5-------------0.6
    i want multiple dimension .. like this
    INV_NAME-------UOM----------QTY---------RATE
    HR C12-------------KGS----------5----------------0.6

    I suppose it depends on your definition of the terminology.
    Here is Oracle's definition of each:
    Instance: Consists of the SGA Memory structure and background processes used to manage a database. An instance is identified byusign methods specific to each operating system. The instance can open and use only one database at a time.
    Database: An Oracle database is a collection of data that is treated as a unit. The general purpose of a database is to store and retrieve related information. The database has a logical structure and a physical structure. The physical structure of the database is the set of operating syste files in the database. An Oracle database consists of three files types: Data files, Redo Logs, Control Files. (note: parameter file, password file, and archive logs are not considered part of the database)
    So to answer your questions, if you have two separate Oracle instances on your machine, I would say you have both two instances and two databases.

  • Numbers vs. iCloud across multiple devices?

    I'm confused.  I am a long time mobile me user and I consider my self a mac poweruser.  I just made the switch to iCloud and my main purpose was to use Numbers across multiple devices.  I have a MacPro, iPhone 4 and iPad 2, all running the lastest versions of iOS, Lion, and Numbers.  I understand that the Mac version can't sync seamlessly like iCal or Contacts.  I have to upload and download files with changes to work on them on the Mac.  However, I can't see any of the files on my iOS devices or in my iWork page on my iCloud.  If I make a file or make a change to a file in Numbers on an iOS device, shouldn't it upload that file to the cloud automatically?  Shouldn't the iOS devices "see" the newly uploaded changes from my Mac?  I got it to work once as a test right before Thanksgiving, but since then, nothing.  I've made sure all the correct settings are turned on, however, still no communication to the iCloud.
    Am I expecting too much?  I'd really like to buy a MacBook Air to use Numbers at work, however, I can't justify the cost if none of these devices will talk to each other.  What I really need is for my iPhone or iPad to have up to the minute versions of my Numbers files which will be mainly edited on a laptop or desktop.  Any suggestions.  Thanks.

    Your understanding of how iWork document syncing works is correct.
    Have you enabled document syncing on each of your iOS devices. (settings > iCloud, and setting > pages > iCloud etc etc)
    If you still can't get it all syncing try turning off syncing on all your devices and then turning it on all of them again. (you might ant to save any documents already on your iOS devices to iTunes for safety before turning syncing off)

  • Disable Effects across multiple Clips

    Hello. I was wondering if there was a way to disable/enable effects across multiple clips. I have done all the color correction/grading and have decided to cut another version. Unfortunately the effects I have added all need to be rendered. I want to turn off the effects do the edit, and turn them back on after I am complete. Is this possible? Thanks, Jeremy

    Hi -
    Here is a solution I use, but it has one weird step in it that I am not sure is just a quirk of my system . . .
    Open the Sequence Settings.
    Click on the Render Control Tab.
    Uncheck the Render & Playback - Filters CheckBox
    Click OK.
    Now, on my system, in order to not display the CC filters I've applied I have to do these little extra steps:
    Switch the RT playback control to Safe RT, then back to Unlimited RT.
    Now the sequence plays without displaying the filters.
    To restore the effect of the filters, you reverse the steps-
    Open the Sequence Tab.
    Click on the Render Tab.
    Check the Render & Playback - Filters Checkbox, then click OK.
    and again, don't know if this just my system but -
    Switch the RT playback control to Safe RT, then back to Unlimited RT.
    You'll see your Color Correction again, and it will need to be rendered.
    Hope this helps.
    MtD

Maybe you are looking for

  • User Exit for XD02 in Sales area data in Sales tab

    Hi Sap Gurus, I have a problem . I need help . The requirement is In XD01 transaction , In Sales area data, In Sales tab i need to add a Check box which i already have added.This check box refers to KNVV table-Zflag In VA01 transaction , In menu goto

  • Having problems conecting wireless router to wii

    How do you do it?

  • Ghost user account

    I'll start by apologising, I have searched but was unable to find anything similar to my post, so if there is already a thread with this subject please point me in the right direction. Ok I have two user accounts set up on a PMG5 dual 2.3GHz 4.5GB ra

  • Very slow through Verizon Palm Pre

    When I connect my MacPro to my Palm Pre that uses mobile hotspot, I get about 1.5m down. When I connect my iPad, I only get about 160kbps. When I connect the iPad to my home wireless, I get the full speed of about 10megs down. I've tried connecting a

  • N96 - can not display THAI letters???

    Hi, I just got a new N96, as my old N96 ended up as dog-food :-(.  I got a strange problem, before it was posible for me to receive and read sms in Thai, showing all the letters correct, but now it only show some strange letters. I do NOT need to wri