Automatic hierarchie aggregation not working when dimension formula is used

Hey folks,
i'm facing the following issue. currently i'm setting up an application to plan sales quantities, prices and manufacturing costs.
subsequently i want to calculate following values for members of account dimension:
- turnover (price * sales)
      -> implemented as dimension formula
      -> in the account hierarchie it's a child of net revenue
      -> account type: inc
      => calculation work fine in the reports
- manufacturing cost (manufacturing cost * sales)
      -> implemented as dimension formula
      -> in the account hierarchie it's a child of net revenue
      -> account type: exp
      => calculation work fine in the reports
- net revenue (turnover - manufacturing cost)
      -> in the account hierarchie it's the parent of turnover, manufacturing cost
      -> account type: inc
      => key figure is empty !!
As far as i understood BPC is aggregating automatically along the hierarchie. That means to me that net revenue should be automatically calculated due to the hierarchical relation in account dimension.
Did anyone ever face same issue ? probably the hierachical aggregation is not working when key figures based on dimension formula is used !? Do i really have to implement script logic to solve this issue ?
Looking forward to interesting approaches to solve this issue !
Best regards,
Moritz

Hey,
sorry my description was misleading at this point. i don't have a formula define for net revenue dimension member. i expected the system to automatically calculate it by aggregation along the account dimension hierarchy where net revenue is parent to the turnover and manufacturing costs which are calculated by dimension formula.
Best regards,
Moritz

Similar Messages

  • Why Dynamic Parameter is not working, when i create report using stored procedure ?

    Post Author: Shashi Kant
    CA Forum: General
    Hi all
    Why Dynamic Parameter is not working, when i create report XI using stored procedure ?
    Only i shaw those parameters which i used in my stored procedure, the parameter which i create dynamic using stored procedure
    is not shown to me when i referesh the report for viewing the results.
    I have used the same procedure which i mention below but can not seen the last screen which is shown in this .
    ============================================================================================
    1. Select View > Field Explorer2. Right-click on Parameter Fields and select New from the right-click menu.3. Enter u201CCustomer Nameu201D as the name for your parameter4. Under u201CList of Valuesu201D select u201CDynamicu201D5. Under the Value column, click where is says u201Cclick here to add itemu201D and select Customer Name from the drop-down list. The dialog shown now look like the one shown below in Figure 1. Click OK to return to your report design.
    Dynamic Parameter Setup6. Next, select Report > Select Expert, select the Customer Name field and click OK.7. Using the drop-down list beside select u201CIs Equal Tou201D and using the drop-down list, select your parameter field (it should be the first field). 8. Click OK to return to your report design and see the parameter dialog.The parameter dialog will appear and show you a dynamic list of values that is updated each time your run your report. It couldnu2019t be easier! In our next tutorial, we will be looking at how to use this feature to create cascading parameter fields, where the values are filtered by the preceding selection.
    Dynamic Parameters in Action
    My question is that whether dynamic parameter is working with storedprocedure or not.
    When i added one table and try to fetch records using dyanmic prameters. after that i am not be able to find the dynamic parameter option when i referesh my report.
    One more thing when i try the static parameter for my report, the option i see when i referesh the screen.
    Please reply soon , it's urgent
    Regards
    shashi kant

    Hi Kishore,
    I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
    expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
    =lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
    As to the second issue, please try to use the following expression:
    =Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
    Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SQL model clause not working when dimensioned on a char or a varchar2 colum

    Hi ,
    I tried to execute the below mentioned query and this returns me columns from monday to sunday values as null.
    select weekno
    , empno
    , mon
    , tue
    , wed
    , thu
    , fri
    , sat
    , sun
    from worked_hours
    model
    return updated rows
    partition by (weekno, empno)
    dimension by ( day )
    measures ( hours,lpad(' ',3) mon,lpad(' ',3) tue, lpad(' ',3) wed,lpad(' ',3) thu,lpad(' ',3) fri,lpad(' ',3) sat,lpad(' ',3) sun)
    RULES upsert
    mon [0] = hours [1]
    , tue [0] = hours [2]
    , wed [0] = hours [3]
    , thu [0] = hours [4]
    , fri [0] = hours [5]
    , sat [0] = hours [6]
    , sun [0] = hours [7]
    In the initial example day is a number and when executed the above query it works. The result set is as below :-
    WEEKNO EMPNO MON TUE WED THU FRI SAT SUN
    1 1210 8 7.5 8.5 4.5 8
    1 1215 2 7.5 8 7.5 8
    When the data type of day is changed to char and populated with the right values then the result set looks as below :-
    WEEKNO EMPNO MON TUE WED THU FRI SAT SUN
    1 1210
    1 1215
    Can anyone help me resolve this ?
    --XXXXX                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    user10723455 wrote:
    Hi ,
    When the data type of day is changed to char and populated with the right values then the result set looks as below :- Can not reproduce on 10.2.0.4.0:
    SQL> select * from v$version
      2  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> create table worked_hours_char as select * from worked_hours where 1 = 2
      2  /
    Table created.
    SQL> alter table worked_hours_char modify day char(10)
      2  /
    Table altered.
    SQL> insert into worked_hours_char select * from worked_hours
      2  /
    14 rows created.
    SQL> commit
      2  /
    Commit complete.
    SQL> select weekno
      2  , empno
      3  , mon
      4  , tue
      5  , wed
      6  , thu
      7  , fri
      8  , sat
      9  , sun
    10  from worked_hours
    11  model
    12  return updated rows
    13  partition by (weekno, empno)
    14  dimension by ( day )
    15  measures ( hours,lpad(' ',3) mon,lpad(' ',3) tue, lpad(' ',3) wed,lpad(' ',3) thu,lpad(' ',3) fri,lpad(' ',3) sat,lpad(' ',3) su
    n)
    16  RULES upsert
    17  (
    18  mon [0] = hours [1]
    19  , tue [0] = hours [2]
    20  , wed [0] = hours [3]
    21  , thu [0] = hours [4]
    22  , fri [0] = hours [5]
    23  , sat [0] = hours [6]
    24  , sun [0] = hours [7]
    25  )
    26  /
        WEEKNO      EMPNO MON TUE WED THU FRI SAT SUN
             1       1210 8   7.5 8.5 4.5 8
             1       1215 2   7.5 8   7.5 8
    SQL> select weekno
      2  , empno
      3  , mon
      4  , tue
      5  , wed
      6  , thu
      7  , fri
      8  , sat
      9  , sun
    10  from worked_hours_char
    11  model
    12  return updated rows
    13  partition by (weekno, empno)
    14  dimension by ( day )
    15  measures ( hours,lpad(' ',3) mon,lpad(' ',3) tue, lpad(' ',3) wed,lpad(' ',3) thu,lpad(' ',3) fri,lpad(' ',3) sat,lpad(' ',3) su
    n)
    16  RULES upsert
    17  (
    18  mon [0] = hours [1]
    19  , tue [0] = hours [2]
    20  , wed [0] = hours [3]
    21  , thu [0] = hours [4]
    22  , fri [0] = hours [5]
    23  , sat [0] = hours [6]
    24  , sun [0] = hours [7]
    25  )
    26  /
        WEEKNO      EMPNO MON TUE WED THU FRI SAT SUN
             1       1210 8   7.5 8.5 4.5 8
             1       1215 2   7.5 8   7.5 8
    SQL> SY.

  • 4.0 webservice does not work when Address Cleanse is used

    Hello,
    For my real time web service, I am unable to add any address cleansing transforms and make it work. The web service works fine as long as I do not add any address cleanse transform.
    As soon as I add any address cleanse transform and try to start the service,  the real time services list icon would turn yellow for more than 10 mins with the status stuck as "Service Starting"
    The code in designer complies fine. The address cleanse transform works fine with batch jobs. Web services without address cleanse transforms work fine. Am not sure what the problem might be.
    It'd be great if you could give some pointers on how to resolve it.
    Thanks for looking.
    Regards
    T.

    Hi Vidya,
    Thanks for posting your example. You may want to remove your workspace details from the previous posting, or at least update the password on the workspace. I've taken a look at your example and initially couldn't see anything wrong with your tree query. However, when I ran your query in SQL Workshop, it only returned one row, which would explain why you were only seeing one node in your tree! I've updated your query to use a WITH clause, and the tree is now working correctly. I believe you've hit an underlying database bug where the CONNECT BY query is only returning 1 row, when in fact it should return > 1 row. By re-writing the query to use a WITH clause, you can get around the problem.
    Regards,
    Hilary

  • Clientgen not working when an autotype is used with an xsd

    Here the situation is i am generating java files utilizing autotype using an xsd which in turn import another child xsd and as both have different namespace they class are generated in a different package structure. I wrote a ejb where i expose a method with the user defined objects , which is been generated from the above xsd, as the parameters.Here i cant able to generate the clientgen as its not able to fetch the class of the child xsd complex type.
    Can anybody provide me a suggestion

    Let me be more clear
    - I need to generate java classes using an xsd which in turn import another xsd.Its been worked out with autotype.
    - I need to exposed a service using Ejb which has some user defined datatypes and are derived from the classes generated by autotype( both from the parent xsd and the imported child xsd ) as per the first point, and i used Servicegen to exposed it too... i generated an ear file.
    - Now the issue is when i used clientgen using the above EAR file it cant able to view the Package structure (Namespace) of the imported child xsd.
    Please post ur suggestion

  • Canon Mp600 will not work when I try to use photoshop print settings since I upgraded to latest Maverick?

    I upgraded to latest Maverick . Now when I use PhotoshopC5 my print settings crash every time I even touch the button. My printer is a Canon MP600 and worked with all Photoshop settings until this week. Help!

    The last driver that Canon released for the MP600, v10.5.1.2.0, was for Mac OS X 10.7. Since you mention upgrading to Mavericks you could have a driver version earlier than this. You can check by opening Printers & Scanners, selecting the MP600 and then clicking on Options & Supplies. With the General tab selected you will see the driver version.
    Now even if you do have the latest version there is no guarantee that it will be compatible with all applications on 10.9, especially the CS5 suite. You could try installing Gutenprint v5.2.9 to get a driver more compatible with the latest OS. Or if colour management is a requirement for Photoshop printing then you may need to purchase Printfab, although since you are using an MP600 then I would assume that you are not overly concerned with colour accuracy. Another option is to export the image from Photoshop as a PDF and then open this in Preview and print from that application.

  • Browser not working when apps are in use.

    Although my browser works normally if I use any app which requires an internet connection and try to use the browser simultaneously the browser says connection not available and I'm unable to connect. Any ideas what's wrong?

    That's weird
    Are you using SmartConnect or Psiloc Connect?
    Also, can you check in the browser settings if you have set-up a default connection? (a destination group, or a single access point, or "always ask", or nothing?)
    Maybe you could also check the connection settings for one of the other applications from which you can open the browser (just to make sure that the settings of the application do not conflict with the settings of the browser..)

  • Alerts not working when formula is in the cell

    I am having a problem where my alerts are not working in the preview mode.  They work fine when I hard code the alert range.  But I need the alert to change under differnt conditions and I am using an IF statement
    the formula is simple
    =IF('TXF Inputs'!D27=3, C34/2, C34)
    output is either 0.375 or 0.375/2 = 0.1875
    if i hardcode the cell with either of these values the alert works, but it does not work with the formula.  The confusing part is that I have other alerts that have IF statements in them and they all work.
    They also work fine in the main screen, ie it shows yellow if my default values =0.1875, but then when I preview or publish they don't work
    bw

    Can u give us the details like which component you are using for alerts.

  • Excel Functions Do Not Work When Data Source is BW

    Hello,
    My platform is, BOBJ BI 4.0. Data source is SAP BW. BW is connected to XCelsius with BEx. My problem is, excel functions do not work when data source is BW. For example, Excel cell A1=quantity1  B1= quantity2   C1= excel function "=A1+B1" When data source is Excel, for example A1=5, B1=9 C1 automatically equals to 14. (There is no problem when data source is Excel) But, in BW, for example when BW set values to A1=5, B1=9, the system does not calculate C1. C1 always equals to initial value, the system does not care any excel calculation when data source is BW.  Any guess for my problem? Thank you for your effort.

    Hi,
    As you are using very simple formula,it will work no matter which source you are consuming.As mentioned,try to place a simple component(Eg:spreadsheet),just to check whether you are getting the right calculated value or not.
    As you are using BW as source,the Preview option will not show the runtime data,so you need to publish in Portal to check whether the calculation happened or not.
    As far as I know only few fromulas are supported in Xcelsius,but these kind of simple formulas are very much supported.
    Rgds,
    Murali

  • Partner function not working when creating PO with ref to PReq

    Partner function is not working when creating a Purchase Order with ref to a Purchase Requistion, Partner functions maintained in the vendor master are VN, OA & PI.
    But OA & PI are not appearing in the PO header partner tab when created with ref to PR.
    however it works when i create the PO directly ( without the PR ref )
    I am using the same material & Plant for both manual PO & PR to PO.
    Any idea what could be wrong .
    I have maintained the settings for schema groups for vendor master & purchasing doc in the partner determination.
    Thanks
    Dkmurthy

    Hi,
    I have also an issue that seems similar to one you are discussing.
    When we use ME59N and create a PO with ref. from a PR (created from a sales order), the message determination works well, it reads the condition set in MN04 (condition records for messages), and creates a message (with output type for EDI , medium: 6, and partner function LS: Logical system). Message is created and idoc is sent.
    When we try with ME21N, ME21 and we create the PO with ref. to the same PR, either by entering manually the PR in the document overview of ME21N or by selecting the PR (without entering the PR number), i.e with date, the message is not created in the PO.
    Company code is assigned to purchase organization, and so is purchase organization to plant.
    Any idea why there is no automatic message determination in the case of the transaction: ME21N
    Note: If I try ME21N, and enter the output type and partner, manually, I receive a warning message
    VN006 (Partner XXXX does not exist for partner function LS). If I accept this warning message, then message is saved- idoc is sent. However I can not overcome the warning message, if it plays any role, because I can not assign partner function LS to the vendor.Then I receive message CZ 327 (Can not use this partner role).
    Any input is wellcome.

  • I baught Seagate Backup plus 2T hard drive to use as my Backup time machine. But its not working when i connect to time machine its not coping files, it keep saying preparing files. Can someone help me please...

    i baught Seagate Backup plus 2T hard drive to use as my Backup time machine. But its not working. when i connect to time machine its not coping files, it keep saying preparing files. Can someone help me please...

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • ByAccount Aggregation not working correctly in 2 of 3 cubes

    I have 3 financial cubes in the same project.  Essentially the cubes are the same with only the account rollup being different.  For the accounts I have 3 separate parent child account dimensions defined.  The account
    type for each account is defined the same in all 3 dimensions, although there are different rollup groupings.  At this point, I have our main account rollup working correctly.  However, the other two are not rolling up correctly. 
    It appears that these two cubes are treating every account as an "Asset" and aggregating with LastNonEmpty as the aggregation.  I have displayed the "Account Type" field in the solution and I can see that it is set correctly
    in all 3 cubes.
    I have tried removing the account intelligence configurations and then recreating them with no luck, I consistently get the same result.
    Any ideas on what the problem may be are appreciated.
     

    Hi Jgretton,
    If I understand correctly, the byAccount Aggregation works only on one of the cube, right?
    ByAccount Aggregation can be done by running the Define Account Intelligence wizard. To do this, go to the Dimension menu and select Add Business Intelligence and then select 'Define Account Intelligence' from the list of available enhancements.
    In your scenario, please ensure that the seetings are correct on the cubes that ByAccount Aggregation not working. Here is a article that describe how to enable it step by step, please see:
    http://www.packtpub.com/article/measures-and-measure-groups-microsoft-analysis-services-part1
    Hope this helps.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • The T61 internal mic does not work when docked

    The internal mic does not work when docked. However works fine when undocked.
    Does anyone know how to fix this?

    I go this issue very recently. What I did to solve the problem was probably mentioned before somwehre over the web.
    First of all, I degraded Skype from the latest version to skype 6.1.0.129. Then I went in Skype - Tools - Option - Advanced Settings - Automatic Updates and click "Turn off automatic updates" and Save. I closed (Quit Skype) Skype then.  
    I clicked on Start (in toolbar) and in search area typed Device Meneger. Then in Sound Video and game controlers, highlite and right click on mouse on IDT High Definition Audio Codec and press Unistall. This will unistall IDT drivers from the system. You must restart your computer.
    Once you come back after reboot, you must go again to the Sound Video and game controlers and remove the rest part of your driver. After reboot go Sound Video and game controlers and click "Scan for hardware changes" then system find your IDT Sound Card again. Please install the latest driver (6.10.6367.0) and reboot. After reboot you should have mic working while on Skype. 

  • After ram upgrade automatic sleep is not working anymore

    Some days ago I installed a second 1GB ram module in my 20" Intel iMac. After this I noticed that the automatic sleep do not work anymore. The display turns off but the iMac not. The iMac makes sounds like he wants to do to sleep but could not.
    I tried everything I could find... delete OS X powermanagement prefs, run Onyx, reset the SMC.
    Do anyone have an solution for this?
    Thanks

    Does your iMac recognize the new memory module?
    Yes.
    You might try reseating the module in its slot, and it
    would not be a bad idea to run Hardware Test from
    your install/restore DVD, just to be sure there is
    not an underlying hardware problem.
    Already done - no problems reported
    Is your new memory module of the same specifications as the
    stock module?
    Yes it is the same, I had a look on this before I bought it because I wanted to use the dual-channel mode.
    Also, what are your settings for sleeping your iMac?
    5 min to sleep display, 10 min to sleep the mac
    One other thing you may wish to
    try is updating your system of OS X 10.4.6 (your
    profile indicates that your a running 10.4.5).
    Was updated to 10.4.6. I just forget to change the forums pref
    I more thing to mention when I start the sleep mode manually everything is fine. I also tried to disconnect all external USB/Firewire hardware and tried it with a fresh mac os install on my USB HDD.
    Nothing helped.
    Thanks

  • I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    IF it is a manufacturing defect and you bought the device from Apple or an authorized Apple retailer, then take it into Apple.

Maybe you are looking for