Problem of percentage with calculated KF

Hi,
I am trying to get the percentage share of a calculated KF. its something like this
col -> RKF1  RKF2 CKF(RKF1 + RKF 2)
row1:392150 0  392150
row2:410925 101298  512223
%(row1%A row2): 95% --  95%
The last % value should be 76% but it doesn;t take the total for the calculation. How can i correct this??
Regards,
Sujai

Hi,
Please use Formula Collision in your report on this % calculation.
This will solve your problem.
-Vikram

Similar Messages

  • Problem saving queries with calculated key figures

    Hello Experts,
    I am analyzing this problem since many hours during the last weeks and I don't know, what else to do.
    The problem is saving a key user query containing a calculated key figure in the production system (BW 3.5 SP SAPKW35015). The Error 'The query could not be saved due to a problem in transport' occures.
    If I exclude the KF from the query, saving is possible, so the calculated KF must be the source of the problem.
    The system is set to not changeable, but the 'Object Changeability' of 'Query Elements' in 'RSA1' --> 'Transport Connection' is set to 'Changeable Original'. If I set this option to 'Everything changeable', saving of the query works, but this is not possible in production, because transported standard queries would also be changeable.
    For saving queries, die authorization object S_RS_COMP and S_RS_COMP1 is included completely with *, but this does not help.
    I also transported the query and the KF again from development system ... no change, same problem.
    I found the SAP note 533413, but what does this mean? "This problem can only be solved in the next BW release ..." I heard from colleagues, that BW 7.0 has the same problems.
    Does anyone have an idea, how to solve this problem?
    I would be very thankful for any reply...
    Hannes
    Edited by: Hannes Heidrich on Jun 23, 2008 12:07 PM

    Thank you for your answer, but I have set the Object Changeability to Everything Changeable and restricted the user with S_RS_COMP. So only certain query names can be used and changed. Experiences from collegues said, that deleting and transporting again would not help.
    Best Regards,
    Hannes

  • Percentage with calculated Key figure in queru designer

    Hi,
    I have this problem with query designer.
    I want to calculate a share over sub total in a query with 3 characteristic exploded: one in vertical (project)
    and 2 in horizzontal (quarter and year). I am using query designer 7.0.
    I have created a calculated KF with function CT% but, instead to have the percentege over subtotal, I have the percentege over total.
    This is the example of what I would like to get:
                        quarter  1                                               2
                            year  2007                 2008                 2007                  2008
                                    Cost   % cost    Cost   % cost    Cost   % cost     Cost   % cost
    Project
    Total                        27365    100%      30155   100%   29300   100%   29875   100%
    PRJ 1                        820      2,99%     1100     3,65%   930     3.17%   860     2,88%
    Could anyone help me ?
    Thank you !
    Bye.
    Elena

    Hi,
    create two restricted keyfigs:
    KF1 restricted to one of your 0CALYEAR
    KF2 restricted to the other year
    Create a formula or CKF, KF3 = KF1 - KF2
    Implement your TOP N condition on KF3
    hope this helps...
    Olivier.

  • Problem of percentage in calculated KF

    Hi,
    I am trying to get the percentage share of a calculated KF. its something like this
    col -> RKF1  RKF2 CKF(RKF1 + RKF 2)
    row1:392150 0  392150
    row2:410925 101298  512223
    %(row1%Arow2): 95% --  95%
    The last % value should be 76% but it doesn;t take the total for the calculation. How can i correct this??

    Hi,
    this expression is correct. Do you have cells in this report?
    Regards.

  • OBIEE 11G - problem with calculating percentage

    Hi,
    I have a problem with calculating a percentage....
    I have a 2 measures Success and Failure
    where Success is a count(Response_key)
    Failure is a count(failure_key)
    I want Success/(Success+Failure) * 100
    I am getting this value as a 0
    Infact any column I take from the subject area and say count of that column and divide it by any integer say count(column1)/5 ,Say count of that column1 is 132 Eg: 132/5 , Its showing this value as 26.00 when I put decimal value to 2 , but it is 26.4...It is avoiding decimal values .
    So in my case success/(success+failure) in which Dr is greater than Nr . Since we get the value as 0.something . It is showing 0 value
    So , 0*100 it is showing me as 0%
    Can anyone please help me on this ??
    --Siri                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Yes, you need to put cast in numerator alone to get the resultant output in double.
    You can mark the post as Correct since your issue is resolved now.
    Thanks

  • Percentage Variance calculation problem

    Hi experts,
    I have report with following scenarios:
    <h3>Account Name---ActualBudget---Variance --Variance Percentage </h3>
    Account Level 1______3400_______5200____-1800______________X
    -Account Level 2______2200_______4200_____-2000______________XX
    --Account Level 3______1000_______2000_____-1000_______________-50
    --Account Level 3______1200_______2200_____-1000_______________-45.45454545
    -Account Level 2______1200_______1000_____200________________XX
    This is how the report is now displayed. I have done a Hierarchical Grouping of database field (Field Account). Here the Actual and Budget columsn are the summary fields with "sum" and the Summarize across hierarchy checked.. The formula for Variance Percentage is
    if Budget =0 then 0
    else  ((Variance/Budget)*100)
    Now, all the output is displayed in Group Header. The problem here is the calculation of Variance Percentage of Levels above Level3 i.e. Level 2 and Level 1. Level 2 percentage should be the calculation of (Variance / Budget ) *100 of that Level only i.e. Level2 and same should be the case for Level 1. When I apply the summary field on this column, the percentage calculation is all wrong as the Level 2 will be sum of Level 2 variance percentages which is not correct output.
    I need a solution to this quickly.. if some more clarification is required please reply to this post..
    Thanks

    Don't use a summarized field. Instead create a formula field
    Right Click on the formula field which will be there in your Field Explorer --> Select New --> Provide the name for your formula field in the text box shown
    and put the condition there like
    if {test.Budget} =0 then 0
    else  (({test.Variance}/{test.Budget})*100)
    Once formula field is created place in the desired location where you need to show the Variance Percentage.
    Hope this helps!

  • Battery problem after enabling battery percentage with ibackupbot

    My battery on my iPod touch 5g drains faster after I added the battery percentage with ibackupbot. Does anyone who did this have the same problem?
    Before my battery drain to 93% of constant usage ( wifi on,checking email, browsing safari, etc ) in about 1 hour and 25 minutes; now it goes to 93% in 45 to 50 minutes.
    Also when I charge my iPod it gets only to 95% and stops charging, and when I unplugged it, it reads 99%.
    Please help if you guys know how to fix this..

    Restore to the iPod to factory settings/new iPod.

  • Problem in Service Tax Calculation in PO taxes tab [CIN].

    Dear Experts,
    For external services procurement, i have configured service pricing procedure for the pricing application - MS.
    Service basic prices and other pricing stipulations are maintained in Services tab [PO Item Level].
    For service tax following condition types are maintained -
    1] JST1 - IN: A/P Service tax
    2] ZSED - IN: ECESS Services
    3] ZSHS - A/P SHECESS Service
    Condition record in Transaction - FV11 are maintained for the tax code only [Key Combination]
    Condition table assigned to the service access sequence is assigned with tax code field.
    I have maintained the condition record for all above mentioned condition types. for example Tax Code - S1.
    But in Service Purchase Order, when i am assigning tax code, it is adopting tax percentage in taxes tab but
    not copying or not adopting the service prices at or for the Condition type - BASB - Base Amount.
    Please Guide me on the issue.
    or please guide me on SAP service tax configuration.
    Thanks in Advance

    I have Check it in case of material procurement i mean for the basic excise duty and other taxes it is adopting the value for basb.
    The problem is only with service tax conditions.
    Please give me the steps for service tax configuration.
    please provide me the steps for cin service tax processing.

  • Netui:tree with calculated tree

              Hi!
              I am fighting with the netui:tree tag in a JSP with Bea Weblogic. Showing a tree
              like
              <netui:tree tree="commodityTreeResult" action="updateTree" imageRoot='<%=
              request.getContextPath() + "/resources/images" %>'>
              <netui:node label="root" expanded="true">
              <netui:node label="root.1"></netui:node>
              <netui:node label="root.2"></netui:node>
              </netui:node>
              </netui:tree>
              works easily. But I'd like to show a tree that is calculated by a Java-Control.
              I hoped something like
              <netui-data:callControl resultId="treeResult" controlId="treeService"
              method="makeTree"></netui-data:callControl>
              <netui:tree tree="{pageContext.treeResult}" action="updateTree" imageRoot='<%=
              request.getContextPath() + "/resources/images" %>'>
              </netui:tree>
              gives an error "Cannot find tree control attribute 'commodityTreeResult',
              and something like
              <netui:tree tree="commodityTreeResult" action="updateTree" imageRoot='<%=
              request.getContextPath() + "/resources/images" %>' rootNode="{pageContext.treeResult}">
              </netui:tree>
              does not work either. How do I "plug in" a calculated tree into netui:tree?
              Thanks so much,
              Hans-Peter
              

    Hi! Alright, I had the same problem and solved with the sample code. Put the code into your PF's begin, to initialize a TreeNode hierarchy, and store it in session.tree:
              HttpSession session = getRequest().getSession();
              TreeNode rootNode = new TreeNode(null,
              "Root", // Label
              null, // Action
              "javascript:alert('Root');",
              null, // Target
              false // Expanded
                   session.setAttribute("tree", rootNode);
              for (int i=0; i < 10; i++)
              TreeNode node = new TreeNode(null,
              "Node #" + i, // Label
              null, // Action
              "javascript:alert('Node #" + i + "');",
              null, // Target
              false // Expanded
              rootNode.addChild(node);
              After that, just refer to the root node as XScript "{session.tree}":
              <netui:tree tree="{session.tree}" action="updateTree"></netui:tree>
              Dont't forget to implement updateTree - just copy and paste it from the tree sample. Good luck!

  • Problems in using a calculated key figure in the Clustering Model

    We have a problem in using a calculated key figure in the clustering model. With the limitation of the standard, in the Field tab, each calculated key figure cannot be selected from the selection screen directly. According to the SAP help, we have to use a dummy infoobject for a calculated key figure.
    Are there any other ways to use a calculated key figure without using a dummy infoojbect?

    Hi,
    Make use of aggragation property of the keyfigure, for summing the values of that KF.
    Regards,
    Rajkandula

  • The problem I have since I upgraded to Mavericks version 10.9.1 The problem appears only with Mail not with other programs, not even with my browser. When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command   to e

    the problem I have since I upgraded to Mavericks version 10.9.1
    The problem appears only with Mail not with other programs, not even with my browser.
    When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command + to enlarge the text, although I can reduce it with Command -.
    As I have a problem with my eyes, This is a serious matter for me.
    When I write an e-mail, if I select text and press Command +, it just displaces the text to the right.
    Now, my husband has a USB keyboard. If he connects it to my computer, his regular Command + does not work either, but  he uses the extended keyboard, then it works. Unfortunately, he needs it for a musical application which does not work with a wireless keyboard.

    Firefox 3.6.4 and 3.6.6 use a process called, "plugin-container.exe" which was using up most of my CPU when I opened up multiple tabs that contained Adobe Flash files, and caused Firefox to lock up.
    My solution was to use Firefox 3.5.10 which you can get from the Mozilla website at [http://www.mozilla.com/en-US/firefox/all-older.html]
    I am using Adobe Flash 10.1.53.64 without any problem in this version of Firefox. Check the release notes, I believe it contains all the latest security fixes in "Firefox 3.6.4".
    Hopefully, they will fix Firefox 3.6 in the next version (e.g. Firefox 3.6.7), until then you should probably use "Firefox 3.5.10".

  • I have an alert message in disc utility. Error: storage system verify or repair failed. Problems were found with the partitian map which might prevent booting.

    While running verify disc in disc utility on 251 GB SSD SM256c Media I came up with this message: Alert system verify or repair failed. In the descriptions box of history it said, problems were found with the partitions map which might prevent booting. This is followed by a message in red reading, Error: Storage system verify or repair failed. At the time I was down loading raw pictures off my camera through a card reader across my computer to a relatively new 2TB Western Digital portable hard drive. after about 13 to 15 pictures downloaded that drive faileded. My Mac Book Air works fine, but i get this message now everytime I run disc verify on this disc. The Macintosh HD checks out fine.

    While running verify disc in disc utility on 251 GB SSD SM256c Media I came up with this message: Alert system verify or repair failed. In the descriptions box of history it said, problems were found with the partitions map which might prevent booting. This is followed by a message in red reading, Error: Storage system verify or repair failed. At the time I was down loading raw pictures off my camera through a card reader across my computer to a relatively new 2TB Western Digital portable hard drive. after about 13 to 15 pictures downloaded that drive faileded. My Mac Book Air works fine, but i get this message now everytime I run disc verify on this disc. The Macintosh HD checks out fine.

  • Hi! I can't upgrade my iTunes 10.3.1.55 on my Windows XP 2002 SP3 to the latest version of iTunes. Got the message: "A problem has occured with the Windows Installer-package. A program needed for this installation could not be run." What to do?

    Hi! I can't upgrade my iTunes 10.3.1.55 on my Windows XP 2002 SP3 to the latest version of iTunes. Got the message: "A problem has occured with the Windows Installer-package. A program needed for this installation could not be run." What to do?

    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • Why does my iPhone 4 not charge correctly?  Problem is definitely with the phone and not charges or chords.  Phone will charge but very slowly and no icon comes on.  Computer and iTunes doesn't recognize it a being connected.

    My iPhone 4 quit charging correctly.  It does charge but very slowly and icon doesn't indicate it as charging.  I've checked cables and charges and the problem is definetily with the phone.  My car stereo no longer recognizes it as a device.  Neither does the computer.  The real strange thing to me is that when I plug it into my old klispch speaker dock it will play songs.  My battery life is good when it is charged so I don't think its the battery. I've tried resetting the phone and cleaning the charging port.  I'm out of warranty.
    Would disconnecting the battery possibly reset it from some glitch or is the charging port got some bad contacts?

    I checked with the Genius Bar.  It was a new dilema to the lady that was helping me.  She took it to a back room and worked on it but it came out the same.  She gave me some options for repair or credit for replacement.
    I just kept the phone and put up with slowly charging it by plugging it in and then turning it off.
    I couldn't transfer anything from itunes.
    I finally got fed up and bought a new charging port for $10. and a toolkit for $3.  I looked up a video on youTube for the replacement and did it.
    That solved all the problems, it was the charging port, must have been some bad pins or something because it patially worked.

  • Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Edit

    Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Editor works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X".
    I have since uninstalled and reinstalled the app, but get the same error message.

    Which version of OS X do you have? It's not clear from your post whether "installed an upgrade" means you just installed PSE 13 as an upgrade or you installed an update to PSE 13, like ACR 9 or 13.1. Please clarify.

Maybe you are looking for