Issue with Exclude Selection in Bex

Hi all,
   I have created a query to display the Top 10 Customers.
Here I have excluded all the customers apart from the Top 10 since they differ
based on different regions. There are 4 different regions and the customers differ
for all of them. Here the issue being I dont get the exact percentage of Orders and
Sales because of these excluded values. Here I cant use include selection since i
need different top 10 customers for the 4 regions.
    How to compute percentage with Exclude Selection? Could anybody help?
Points would be surely assigned.
Regards,
Sunitha.R

Dear Anil,
     I have my Orders, Sales, percentage calculations in columns and the excluded
Top 10 customers in rows. I get the individual percentage values for each customer.
  My scenario being :
  Orders 06  : Values computed with Calculate Result as Summation - Properties.
  Orders 07 : Values computed with Calculate Result as Summation - Properties.
  Orders % : Here I have given Calculated Result as Nothing - properties.
       I get the individual percentages say :
     <b>                  Orders 06              Orders 07        Percentage</b>
<b>Customer 1 : </b>       12.1                       91.2                    75.5
<b>Customer 2 :</b>          7.6                          7.9                   104.3
<b>
Overall Result:</b>         19.7                         99.1                 Wrong Value
    Considering the above example, total percantage is computed wrongly. The excluded value's total is not considered at all. Can you now give me your suggestion?
Regards,
Sunitha.R

Similar Messages

  • Issue with Hierarchy selection in Filter area

    Hi experts,
    We have an issue with BEx query selection.
    Structure of Quey
    1. Filter Area
    => Characteristic Relations : Restriction condition with hierarchy
    2. Rows
    => Display characteristic with hierarchy active
    3.Columns
    => Formula with keyfigure using sign reverse of hierarchy (formula variance).
    <symptom >
    When I use context menu, "Keep filter value", with the displayed hierarchy node,
    and drilldown with other characteristics, the result became wrong. Filter value I kept became inactive.
    Workaround I found was like belows.
    1. Remove sign reverse calculation in Formula.
    2. Keep sign reverse calculation and move restriction condition with hierarchy in filter area TO default values.
    I wonder this symptom was right technically or bug ocurred after version upgrade or something.
    Thanks in advance.
    BEx BI Addon 7.X(based on 710)/SP11 Revision 634

    Hi
    This depends on the logical database that the report is based on. Secondly I have experienced that the report variant overwrites the date selections and therefore it looks like that the dates are not parsed (which I think is your problem).
    For e.g. logical PHP and PHPCE both the period and data dates are filled with the data selection from the portal. (check on the report attributes in SE38 which logical DB used) For e.g. PTRVP (travel) no date are passed at all in the call of the report!!
    To make sure that the report variant isnu2019t overwriting I normally set the variant for the report to u201CSave field without valuesu201D for the date selection periods and then it isnu2019t filled by the variant.
    Data selection period
    Data selection period: Start
    Data selection period: End
    Employee selection period
    Employee selection period: Start
    Employee selection period: End
    Regards,
    Lars

  • Performance issue with view selection after migration from oracle to MaxDb

    Hello,
    After the migration from oracle to MaxDb we have serious performance issues with a lot of our tableview selections.
    Does anybody know about this problem and how to solve it ??
    Best regards !!!
    Gert-Jan

    Hello Gert-Jan,
    most probably you need additional indexes to get better performance.
    Using the command monitor you can identify the long running SQL statements and check the optimizer access strategy. Then you can decide which indexes might help.
    If this is about an SAP system, you can find additional information about performance analysis in SAP notes 725489 and 819641.
    SAP Hosting provides the so-called service 'MaxDB Migration Support' to help you in such cases. The service description can be found here:
    http://www.saphosting.de/mediacenter/pdfs/solutionbriefs/MaxDB_de.pdf
    http://www.saphosting.com/mediacenter/pdfs/solutionbriefs/maxDB-migration-support_en.pdf.
    Best regards,
    Melanie Handreck

  • RSA1 Document - Issue with "multiple selection" Characteristic

    Hi,
    I have the following issue with a web template showing monthly reporting results (act/plan/var) for a specific cost center broken down following a cost element hierarchy.
    My purpose is to attach each month some comments and these comments are made at the query level, not for each individual cost element.
    However, as explained in note 501593, when creating my document, I have to restrict my cost elements since they are regarded as "multiple selections".
    I could go and limit from 6 to one single value through table RSODADMIN but I never know for sure that this single cost element would always show up in my query.
    In RSA1 > document > properties of the comment, is there any way for me to go and input a range for my cost elements, instead of having to enter cost element by cost element ?
    Thx
    Stéphane

    Hi,
    I have the following issue with a web template showing monthly reporting results (act/plan/var) for a specific cost center broken down following a cost element hierarchy.
    My purpose is to attach each month some comments and these comments are made at the query level, not for each individual cost element.
    However, as explained in note 501593, when creating my document, I have to restrict my cost elements since they are regarded as "multiple selections".
    I could go and limit from 6 to one single value through table RSODADMIN but I never know for sure that this single cost element would always show up in my query.
    In RSA1 > document > properties of the comment, is there any way for me to go and input a range for my cost elements, instead of having to enter cost element by cost element ?
    Thx
    Stéphane

  • Performance issue with the Select query

    Hi,
    I have an issue with the performance with a seclet query.
    In table AFRU - AUFNR is not a key field.
    So i had selected the low and high values into s_reuck and used it in Where condition.
    Still i have an issue with the Performance.
    SELECT SINGLE RUECK
    RMZHL
    IEDD
    AUFNR
    STOKZ
    STZHL
    FROM AFRU INTO table t_AFRU
    FOR ALL ENTRIES IN T_ZSCPRT100
    WHERE RUECK IN S_RUECK AND
    AUFNR = T_ZSCPRT100-AUFNR AND
    STOKZ = SPACE AND
    STZHL = 0.
    I had also cheked by createing an index for AUFNR in the table AFRU...it does not help.
    Is there anyway that we can declare Key field while declaring the Internal table....?
    ANy suggestions to fix the performance issue is apprecaited!
    Regards,
    Kittu

    Hi,
    Thank you for your quick response!
    Rui dantas, i have lill confusion...this is my code below :
    data : t_zscprt type standard table of ty_zscprt,
           wa_zscprt type ty_zscprt.
    types : BEGIN OF ty_zscprt100,
            aufnr type zscprt100-aufnr,
            posnr  type zscprt100-posnr,
            ezclose type zscprt100-ezclose,
            serialnr type zscprt100-serialnr,
            lgort type zscprt100-lgort,
          END OF ty_zscprt100.
    data : t_zscprt100 type standard table of ty_zscprt100,
           wa_zscprt100 type ty_zscprt100.
    Types: begin of ty_afru,
                rueck type CO_RUECK,
                rmzhl type CO_RMZHL,
                iedd  type RU_IEDD,
                aufnr type AUFNR,
                stokz type CO_STOKZ,
                stzhl type CO_STZHL,
             end of ty_afru.
    data : t_afru type STANDARD TABLE OF ty_afru,
            WA_AFRU TYPE TY_AFRU.
    SELECT AUFNR
            POSNR
            EZCLOSE
            SERIALNR
            LGORT
            FROM ZSCPRT100 INTO TABLE T_ZSCPRT100
            FOR ALL ENTRIES IN T_ZSCPRT
            WHERE   AUFNR = T_ZSCPRT-PRTNUM
            AND   SERIALNR IN S_SERIAL
            AND    LGORT   IN S_LGORT.
        IF sy-subrc <> 0.
           MESSAGE ID 'Z2' TYPE 'I' NUMBER '41'. "BDCG87
           stop."BDCG87
        ENDIF.
      ENDIF.
    SELECT    RUECK
                  RMZHL
                  IEDD
                  AUFNR
                  STOKZ
                  STZHL
                  FROM AFRU INTO TABLE T_AFRU
                  FOR ALL ENTRIES IN T_ZSCPRT100
                  WHERE RUECK IN S_RUECK     AND
                        AUFNR = T_ZSCPRT100-AUFNR AND
                        STOKZ = SPACE AND
                        STZHL = 0.
    Using AUFNR, get AUFPL from AFKO
    Using AUFPL, get RUECK from AFVC
    Using RUEKC, read AFRU
    In other words, one select joining AFKO <-> AFVC <-> AFRU should get what you want.
    This is my select query, would you want me to write another select query to meet this criteria..
    From AUFNR> I will get AUFPL from AFKO> BAsed on AUFPL I will get RUECK, based on RUEKC i need to read AFRU..but i need to select few field from AFRu based on AUFNR....
    ANy suggestions wil be appreciated!
    Regards
    Kittu

  • Issue with displaying text in BEx

    Hi all,
    We are facing an issue with displaying text in the query output.
    We have a master data carrying charac ' 0MATERIAL'.When i do maintain master data ,I am able to see medium description in the output.
    Now when i drag 0MATERIAL in bex designer and in properties set display to key and text(medium text), it shows me only the key and it shows some wierd text which is in no way related to the medium description ( that was shown under maintain master data)
    can anyone pls tell me why i am not able to see the medium description when executing the query that too when the text is loaded.
    Pls help
    Regards,
    Suchitra

    But what i wouldlike to know is what about the master data which is present in 0MATERIAL now?
    Nothing will happen to your data.
    Its showing there ...dosent that mean its present and activated?
    They are present n in active version.
    If u change any records they will be in M version..by activating the data...u are converting it to A version.
    Regards,
    Ram.

  • Issue with Variable Personalisation in Bex Report

    Hi Gurus,
    I'm facing a typical problem with Variable presonalisation in the Report.
    I've executed a BEX Report and filtered data on some characteristics and used SAVE AS Button on the Portal to save the resultset. When I'm trying to use the variants, again say after  2 or 3 days i couldn't find updated data for particular variants upon using the same variants rather its refelecting the old data. Further more when I execute the report and try filtering on the same criteria altogether, I'm able to see updated result set.
    Is there any setting to be enabled when we personalise variants or variants are dependent on the data or the date on which they are created. Not sure why the reports are behaving this way. Or Do I need to create variants time and again.
    Any pointers would be of great help.
    Regard,
    Yaseen

    Hello,
    In the BEx report, when you get the variable selection screen there input your selection and at the bottom you have the option of saving them as a variant.
    Now in future when you run the report simply use this variant and execute the report. It should work fine.
    Also remember date selection can be tricky. If you input todays date in the variant, it wil consider the same date in further references. So do a check on that too.
    Regards,
    Shashank

  • Issue with Exclude Char Values in BI 7.0 report

    Hello,
    I have a report where its displays all Materials of Milk and Non Milk products. So my requirement is to see both Milk and Non Milk products separately in report. Inorder to see Milk products I can use selct filter value option where I can give the Milk products I want as it was only 8 materials. However for Non Milk Products I cannot give as it was around 1000 Materials.
    So how can I exclude the Milk materials in Report inorder to see Non Milk products. I dont want to exclude these values in Querydesign as user wants to see both Milk and Non Milk products separately in the Report.
    Any suggestions please.
    Regards,
    Bhanu

    Hi Bhavani,
    Consult with your SD Functional Consultant whether there is any grouping done in R/3.  Normally Material Group, Material Group 1 , material group 2 etc... are used to make material separate. 
    Now , in your case it not required if you want to make the report separate value in report , try the following and let us have your result what getting is ...
    Query Designer
    Free Char :
    Row
    On What basis you want to get report ?? I Assume Customer Group wise
    Drag and Drop customer group
    Column :
    Create New Selection go to edit change the name as 'Milk Items'
    Drag And Drop Billing Qty and Material
    Right Click on Material Restriction
    input Milk Items material Number
    save it
    Create New selection2 name as 'Non Milk Product'
    follow the step above but include material number which are 'Non Milk item '
    I think ..You can even exclude above items to get other include .. not sure please try to exclude..
    Note :  Initially do not provide any variable in Global Filter what all the variable you need to insert , do it later after seeing the output of the screen.  Global filter will restrict all the values. If you want to provider users to variable make it in default value area...
    By creating Hierarchy also you can achieve this...
    Best Regards
    BVR

  • Issue with worksheet.Select(true) after hosting Excel window in WPF application

    The issue is with Office 2013.
    We are hosting excel workbook window in WPF application using HwndHost class. In overridden BuildWindowCore method of HwndHost class, we are creating a MDICLIENT Window and setting this MDICLIENT window handle as parent for Excel
    main window handle and returning HandleRef object of MDICLIENT window handle from BuildWindowCore method.
    Once HwndHost control is loaded, we are selecting sheet of excel in the loaded event of HwndHost control. The code for selection of sheet is given below.
    dynamic workSheet =
    this.excelApplication.Workbooks[1].Worksheets[sheetName];
    this.excelApplication.Workbooks[1].Activate()
    workSheet.Activate();
    workSheet.Select(true);
    The first time execution of
    workSheet.Select(true)
    halt for few seconds and then it throws exception “System.Runtime.InteropServices.ComException”
    with message “The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))”.
    But it executes successfully without delay on subsequent calls. Sometimes the execution halt for minutes on different Systems.
    This absurd behaviour is seen only once in application instance life time and that too after excel window gets loaded in WPF application. If we execute
    workSheet.Select(true)
    before loading of window then it executes properly. Once
    workSheet.Select(true)
    executed for first time with exception, it executes successfully without delay on subsequent calls.

    No, I dont have any macro in the sheet and it is happpening with all workbooks. The problem is consistent with all workbooks and also it throws exception only for first time in the application. If I execute it again in same application instance, it works
    properly.

  • Issue with Decimal Notation in BEX.

    HI BW Experts !!
    Can any one help on this please.
    Thanks a million in advance.
    InfoCube: Equipment Barometer InfoCube (Technical Name: ZRLC_BAR)       
    Key Figure: Month to Date Income (Technical Name: ZRL_MTDIN)     
    If I execute the query with the Month/Year = 10.2004 and I compare it with the data in the infocube in the same period I'll see the following data:                                                   
    Query=   611303.49   (correct amount)
    InfoCube=6113034.92  (Wrong amount, is divided by 10)
    Always the amounts in the query(BEX) is divided by 10.               
    If someone can help me i will appreciate.

    Hi Marcos,
    In Query edit mode, goto properties of key figure (right-click on the ZRL_MTDIN), and select 'Nothing Defined' for the scaling factor.
    This should work.
    Regards,
    Vikrant.

  • Issue with Compounded infoobjects in BEx

    Hey Everyone,
    I have a small issue when running a report in BEx.  I want to be able to run a report against different Profit Centers, and have all values on the same line.  But, in some cases, I have the same Profit Center on different lines, because the Controlling Area is different (compounded with Profit Center).
    Example:
    Profit Center           Site            Value
    1000-103                1000           $100
    1000-103                1000           $200
    I want to see:
    Profit Center           Site            Value
    1000-103                1000          $300
    I have set Controlling Area to NO DISPLAY in the query properties, and it doesn't display it, but still puts the same Profit Center on two separate lines, because it's compounded and because it does actually have a different Controlling Area.
    Is there anyway to not have the Controlling Area influence my result, and have the same Profit Center aggregated with the other, so they end up on the same line?
    Thanks,
    John

    Hi ,
    try this:
    steps:
    1. Remove the Profit center from your report .
    2. Drag it again in rows where u want the profit center be.
    When u r draging the profit center to  rows "Controlling area" will also come along with it as that was compounded.
    3. Drag "Controlling area" info-object to "Filter section" of query designer.
    4. make the Display properties setting of "Profit Center " as "Standard text".
    That will solve the problem .
    Thanks
    Mukesh

  • Animated GIF files, anyone had issues with the selected animation delay not saving as specified?

    I am working on PSE 9 for Mac and have created my psd file with the layers.
    Selected 'Save for Web' and chose GIF as the file format.
    Ticked 'Animation', then from the bottom right hand corner under 'Animation' I have ticked 'loop' and in the 'delay' drop down selected 2.0 (so 2 seconds).
    When I check the file in 'preview in' web it shows the file flashing faster than 2 seconds a frame. I also checked it by uploading it onto my website and it is flashing faster than 2 seconds.
    I have saved the file several times to check. It appears that even though you are given a choice that is automatically saves the delay at the auto-populated delay speed of 0.2 seconds.
    Thoughts anyone?

    As far as i know, the frame delay has been broken
    for several versions on the mac pse.
    Since version 4 maybe?
    You can comment on this post and hopefully adobe will fix it in pse 10.
    http://feedback.photoshop.com/photoshop_family/topics/photoshop_elements_9_mac_frame_delay _in_save_for_web
    MTSTUNER

  • Issue with webi report on BEx query

    Hi,
    I have created a universe on top of Bex query.  There is no issue in creating and exporting the universe.  But when I try to create a webi report out that BEx query, I am not able to see the values.  Say if I have a column called "Company"  I am getting the value as "All Company" and so on.  What will be the issue?
    But when a report is generated out of BEx analyser they are able to see the values properly.
    Same user credentials are used in both the places (Importing the query into universe, Connecting to BEx Analyser) .
    Thanks & Regards,
    Subbu S

    Hi Subbu,
    the universe will generate a L00 item and a L01 item. The L00 item shows the All member of the characteristic in the case of a flat list and the Top level nodes from a hierarchy. the L01 item should give you what you looking for.
    Ingo

  • Issue with treetable selection listner in ADF

    Hi Experts,
    we are working on JDEV 11.1.1.2.
    here we have a tree table.
    Inorder to get the selected row data in a tree table we are using following code in backing bean.
    public void qaTableSelectList(SelectionEvent selectionEvent) {
    String selectedQaCode ="";
    RichTreeTable treeTable = (RichTreeTable)getQaReasontreeTable();
    RowKeySet _selectedRowData = treeTable.getSelectedRowKeys();
    Iterator rksIterator = _selectedRowData.iterator();
    while (rksIterator.hasNext()) {
    List key = (List)rksIterator.next();
    JUCtrlHierBinding treeTableBinding =
    (JUCtrlHierBinding)((CollectionModel)treeTable.getValue()).getWrappedData();
    JUCtrlHierNodeBinding nodeBinding =
    treeTableBinding.findNodeByKeyPath(key);
    selectedQaCode = nodeBinding.getAttribute(0);
    //use this var "selectedQaCode".
    Initailly this code are working fine for a long time
    Now suddenly its stopped working.
    some time its returning the selected value some times not.
    What will be the issue can any one suggest alternate solution.
    regards
    Gayaz

    It changed about 2-3 weeks ago.
    I haven't done anything to it at all. I just drag an mp3/wav, chop it, save it and I'm done, so I'm not sure why it would all of the sudden change
    It's also noteworth that I reinstalled it several times and it hasn't fixed it. Could it be left-over files from the initial install that weren't unistalled and remained, which affected the reinstall? If so, where would I find them?

  • Issue with table selection in popup window in oaf

    Hi ALL,
    I have a popup seach window in that i am displaying search data in table region below, from that i need to select the number of rows and clicking on a button the same selected rows should display in another page.
    i tried with using RowSetIterator but not able to achive this , please help me out on this.
    Thnaks

    Can anyone please help me on this
    Thnaks

Maybe you are looking for

  • Macbook pro wont start. grey screen then shuts off

    I have been having some problems with my macbook when my battery would die and i would plug it in and try to turn it back on it would take forever to start back up. Sometimes i woudl have to unplug, take out the battery then put them back in and zap

  • Could someone explain what is wrong with this refind expression?

    Hi, could someone explain what is wrong with this refind expression faultCode:Server.Processing faultString:'Unable to invoke CFC - Malformed regular expression "^[0-2][0-9][/][0-1][0-2][/][1-2][0-9]{3}+$".' thanks

  • B3 BER errors

    I have a router connected to a provider via POS and once we commissioned the link we are receiving the following logs 010091: .May 7 06:58:34.353 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface POSx/x/x, changed state to down 010092: .May 7 06:5

  • Video Slips After Export

    I have some video footage from a Mini DV JVC tape that I brought into a ProRes, 23;98 timeline. I captured the tape and converted it to 23;98 using MPEG Streamclip. After editing, I export but everything captured from the tape goes off sync after exp

  • Two Exchange Accounts

    Hi all, I wonderd if anyone can tell me if you can set up two Exchange accounts on the new IPhone 3GS Jon