Simple but strange behaviour of "suppress result rows"

Hi,
In one of the Query, for all the characteristics, the result rows are suppressed but strangely when i execute it on web i see the result row is getting dispalyed for one char.
But when i go back and check my query designer,for every char i see suppress result row is set to Always...but i don't know why it is not reflecting on the web
Now can any one please suggest how to suppress this on web permanently..
Note:on the Web we can select the char and right click and change this feature in properties but it is a one time actitivity,Becuase when we try to execute the report once gain the result row again appreaing!!!
when we execute the same report in BEx analyzert eh result rows is NOT shown up but only in web it is apprearing
Is there any permanent way????????

Hi Swapna,
If you get the same behaviour after reopening the Web Template, you can use command "SET_RESULT_VISIBILITY" to suppress the result rows of that characteristic at Web Template level.
Check this link for more details.
http://help.sap.com/saphelp_nw70/helpdata/en/43/d828d988ef05f6e10000000a11466f/frameset.htm
Regards,
Rk.

Similar Messages

  • How to change default for Suppress Results Rows

    Hi,
    Does any one know a way to change the default value for the "Suppress Results Rows" from "Never" to "Always" under characteristic properties in a BEX query?
    Every time we build a new query we have to go to each characteristic and change most of them to "Always". Want this to be a system wide change that would affect all new queries or existing queries that are being modified by adding new characteristics.
    Thanks,
    Mike

    Hi Mike,
    This property is controlled by domain RRXNOSUMS. You can change the default value to point from "Blank" to "U", I suppose. Haven't tried this though and I am not sure if it is okay to play around with the SAP settings. But if it works for you, do post back.
    Hope this helps...

  • How to suppress Result rows in a Query in Web Application Designer

    Hi
                 I am trying to post a query in Web Application Designer. I am able to run the query in WAD but the Results rows appear. I choose Suppress Result Rows always in All Characteristics option in the query in BEx Explorer but still i see result rows in the WAD. Can anyone please let me know how to suppress Result rows so that they dont appear in Web Application Designer.
    Thanks,
    Padma

    To get the enhanced menu-
    1. Open the template in WAD.
    2. Go to Web Item properties.
    3. Go to Entries in Context Menu.
    4. Find the "Enhanced Menu" property. Set it to "display" if you want it to be visible in template result.
    5. Next time when you execute your template you will be able to access it by right clicking.
    or
    If you just want to supress results without adding enhanced menu in the context menu, simply set "Calculate result as" to "No Display".

  • How to Suppress result rows for ALL Characteristic within BEX Analyzer

    HI,
    We Currently upgrade from BEX 3.5 to BEX 7.
    In BEX 3.5 Analyzer  there was an option by right clicking on a Characteristic and then going to "All Characteristic" and then "Suppress all  Result Rows."
    In BEX 7 Analyzer it seems that you can only suppress result rows one characteristic at a time.  Is there a way in BEX 7 Analyzer  to suppress ALL characteristic at once.  The same as BEX 3.5.
    Thanks!
    Edited by: Raylene Tucker on Feb 8, 2010 12:07 PM
    Edited by: Raylene Tucker on Feb 8, 2010 12:09 PM

    Hi,
    in 7x Analyzer,  surpressing the results & Filtering  is specific to characteristic. and this feature is more advanced and useful than the at a time surpress,
    even i fyou go to the Query Properties, it will allow you to surpress by characteristic only instead of at a time.
    Hopes it is clear
    Regards
    ReddY A

  • "Suppress result row" leads to run-time error 429

    Hi all,
    In the BEx query designer, when I try to change the result row display from never to always in 0CALDAY, I get the following error message:
    Run-time error 429, AcitveX component can't create object.
    Does anybody know how to solve this issue?
    Thanks in advance, Nippon

    Bonjour Nathalie
    Try to add 0FISCVARNT to the query and filter the value

  • SOLVED:Strange behaviour:request shows results in Answers not in dashboard

    Hi all,
    I've come across somethings very strange, which I know has to do with the lowest level of detail of my organisation hierarchy (and the keys used at that level), but I cant understand why its doing the following:
    I have a table in a dashboard that can receive 'is prompted' filter values from a prompt on the same dashboard. When i created this request in answers, for test reasons i gave it values for a "centre" (lowest level of the organization hierarchy), and it displays resultos for my metrics.
    Now I place this request on a dashboard. I have removed my manual test filters, and left the four organization columns of the request as "is prompted", the lowest of these being the centre value. Now in the dashboard, i decide to enter a value directly for the centre dropdown (same value as i previously tested) in my prompt...i get no results found!!!
    The lowest level of this prompt has a key made of two atributes (center and center code), this allows me to "drill down" from the centre to the centre code, although centre code is at the same level. If i remove the drilldown capability, the problem is solved...im not quite sure why.
    Message was edited by:
    zjac

    The problem was with the actual data. WHen analyzing the query that was being done, i realised that one of the keys (the centre name) was using a text field that has spaces after the name of the centre (god knows why), so using a trim resolved the issue.
    I guess the other configuration was using the centre id which was not encountering the above problem.

  • JClient - Strange Behaviour when using multiple-row-selection

    Hi!
    In my application a problem occures whenever I want to select multple rows in a JTable...
    I am using a JTable bound to a ViewObject which displays quite a lot of rows. For further processing I need to select more than one row. So I changed the code the following way:
    table.setModel(JUTableBinding.createAttributeListBinding(panelBinding, table, "SomeView", null, "SomeViewIter", new String[] {"FirstAttribute", "SecondAttribute"}));
    table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    Basically there are 2 problems:
    Whenever I want to select several rows or intervals by dragging the mouse or by using cursers, older selections disappear.
    When I select rows and then use the scrollbar, all selections but one disappear.
    Is there something wrong in my implementation or is this another bug? That's one of those little things, that make life of developers and end-users hard.
    Any suggestions? Thanks a lot!

    Hi!
    In my application a problem occures whenever I want to select multple rows in a JTable...
    I am using a JTable bound to a ViewObject which displays quite a lot of rows. For further processing I need to select more than one row. So I changed the code the following way:
    table.setModel(JUTableBinding.createAttributeListBinding(panelBinding, table, "SomeView", null, "SomeViewIter", new String[] {"FirstAttribute", "SecondAttribute"}));
    table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);JUTableBinding only works with Single-selection model as it needs to track currency based on the current selection.
    You'd have to implement a custom Table-model that wraps the built-in table model (quite like what's done in the 'table sorting example' at
    http://otn.oracle.com/sample_code/products/jdev/jclient/jclient_table_sorting_sample.html
    Then you may implement multiple selection and fake single selection model (last selected row perhaps) to the JUTableBinding's tableModel.
    Basically there are 2 problems:
    Whenever I want to select several rows or intervals by dragging the mouse or by using cursers, older selections disappear.
    When I select rows and then use the scrollbar, all selections but one disappear.
    Is there something wrong in my implementation or is this another bug? That's one of those little things, that make life of developers and end-users hard.
    Any suggestions? Thanks a lot!

  • Not serious, but strange behaviour

    Hi. I say not serious, but if it happens to all my other photos it could be! Went to edit a photo, and when I pulled up the editing tools to make an adjustment, there was nothing at all in the histogram and none of the sliders had any effect. And all the effect boxes were empty. It's as if the image still exists, but all the data behind it has disappeared. Only happens on this one photo so far, but would like to understand why.
    Thanks.

    What color mode is the photo: B/W, CMYK, etc.? It is any different from your other photos, i.e. where it came from or something like that?

  • Class location issue. simple but strange one..

    Im trying to figure out how to find out where the class file Im running at different location. Here is the example.
    xxx.class is at c:\a\ and set classpath "set classpath=c:\a\"
    at c:\b\, type java xxx to run xxx which class file is at c:\a\. is it possible to know programically that xxx knows the actualy file is at c:\a? if you get current working directory, you always get c:\b\ since it is where the JVM starts.. am I thinking too much? =) thanks in advance.

    In a system-independent fashion? I don't think so.
    However, if this is running on a UNIX system, you could use a combination of find and bash scripting to locate the classes for you.

  • Warning Message - Conditions with Result Rows Suppress

    Hi All
    I created a query with conditions and 'Suppress Result Rows - always '. When I run the query in Bex, I get this warning message showing me that conditions exist with result rows suppressed '. Is there a way to avoid getting this warning message.
    Thanks

    Hi Krishna,
    If you want to suppress the message for all users centrally for this particular query, you can do so in RSRT. Put in your query technical name and click on the Messages Button. Check as required to suppress.
    Hope this helps...

  • Overall Result Row is not the Sum of Individual Values!

    I am frustrated with a weird problem.  I have an expense report in which Expense1 is shown a value of 8,126.  If I drilldown by company code, the sum of the company codes is 8,235, but the "Overall Result" row is showing 8,126. 
    I tried drilling down by GL accounts, cost centers, profit centers, material and even currency.  For all of these drilldowns the "Overall Result" row is 8,126 but the individual values sum out to be 8,235.
    First I thought it could be "Zero Suppression" that is hiding some values from the display.  But "Zero Suppression" was not active at all.  I have checked the LISTCUBE and saw that the Expense1 should be 8,235 and not 8,126.  The key figure properties "Calculate Result As" and "Calculate Single Values As" are set to "Nothing Defined" and "Use Default Direction".  But still for some strange reason, the "Overall Result" row is different than the sum of individual rows.  It's driving me crazy as I have ran out of ideas to figure out what's happening.  Could someone help me with this?  I would appreciate any input with points!

    Hi,
    Remove the 'Suppress Zero rows/columns' from the query definition and then check the values.
    Column A might have value, but for the same row column B might have zero, hence the row was not shown in the result set, but the overall result will include all such values as well, even thought it was not shown in the result set.
    HTH,
    regards,
    Nataraj.

  • Result Row in CKF

    Hi gurus,
    I have earlier posted my question but it seems it was difficult to understand.
    I want a simple answer to this one.
    1. Can I get the result row of a CKF column by just clicking " Suppress Result rows - Never" For all Char. Remember, this CKF contains a logical condition of " If col A > col B then col A".
    2. This should be done without using "Calculate result As - Summation".
    I am not getting it using the option 1 above and option 2 I cannot use it due to other preconditions.
    Please give me an answer if possible by just trying out yurself..Its a simple report.
    Regards
    SM

    HI Saad,
    You need to set atleast for one characteristic as "Suppress result rows - Never" and
    You need to set Calculate result as "Summation" or other calculation for Keyfigures and
    Assaign the conditions in Conditions tab to the last characteristic in the rows tab.
    Hope it helps, try out and revert back...
    Regards,
    anil

  • No result row for most granular char in a query. why is this?

    I am creating a query for customer Aging report. Now if the Billing document is the most granular in the query, can i not get the result row for each billing document number.
    I have Billing doc, company code, sales org,controling area, reference key.....etc
    But when I turn on suppress result rows never on the Billing doc char., I don't see a Result row for each billing doc in the data set. Why is this?
    Thanks
    Simmi

    Check your other What should i do to see the subtiatals in the result. I tried to explain how the result rows work in BEx. Hope this helps!

  • Supress Result rows of a formula in a query

    Dear SDN's,
    How to supress Result rows of a formula in a query.
    For a particular characteristic we can do easily in a query,but how can we restrict result rows for a particular formula?
    Thanks and Kind Regards,
    Lakshman Kumar G

    Dear Lakshman,
    If u supress Result rows for a characteristic,,,then all the key figures for that characteristic,,,,this supression rules applies..
    and hence for that particular formula, Supress the relavant characteristic..
    It is as simple as that...
    Hope this helps u..
    Best Regards,
    VVenkat..
    Edited by: Venkata Narayana Jakkampudi on Jan 5, 2009 5:07 PM

  • How to Caculate Substraction of only for result rows in BEx

    Hi,
    I have a issue  in BEx Report.
    The scenario is like this.
    Invoice Amount             Invoice Paid Amount       Pending Payment Amount
    17.90 INR                             3,472.00 INR                      -3,454.10 INR
    524.50 INR             3,472.00 INR                      -2,947.50 INR
    1,017.40 INR             3,472.00 INR                      -2,454.60 INR
    1,790.60 INR             3,472.00 INR                      -1,681.40 INR
    35.80 INR                             3,472.00 INR                      -3,436.20 INR
    57.20 INR                             3,472.00 INR                      -3,414.80 INR
    28.60 INR                             3,472.00 INR                      -3,443.40 INR
    3,472.00 INR             3,472.00 INR                      -20,832.00 INR
    I am substracting (Invoice amount-Invoice Paid Amount) in a formula.
    All the records are comming fine, but when it comes to result rows
    it gives Sum(Invoice Amount) - Sum(Invoice Paid Amount) which is giving a value -20832.00.
    As per my requirement it should 3472.00-3472.00=0.00.
    I have Checked with SUMGT,SUMRT,SUMCT function, it is not comming.
    Even checked with Exception Aggregation.
    How to solve this issue, in other way.
    Regards,
    Subh

    Hi,
    I suggest one of these 2 solutions :
    1-Instead of using a sum formula in the end of rows, simply put the line caracteristic result property to always appear : caracterisic menu -> representation -> lines result -> always show.
    In this way, u dont have to use a formula and the sum will be done natively.
    your result will be like this :
         Invoice Amount Invoice Paid Amount Pending Payment Amount          
    material     17.90 INR 3,472.00 INR -3,454.10 INR                    
         524.50 INR 3,472.00 INR -2,947.50 INR                    
         1,017.40 INR 3,472.00 INR -2,454.60 INR                    
         1,790.60 INR 3,472.00 INR -1,681.40 INR                    
         35.80 INR 3,472.00 INR -3,436.20 INR                    
         57.20 INR 3,472.00 INR -3,414.80 INR                    
         28.60 INR 3,472.00 INR -3,443.40 INR                    
    Result     3,472.00 INR 3,472.00 INR -20,832.00 INR                    
    2- Try to use the NODIM function before the sum formula : nodim(sum()) - nodim(sum())
    Hope this helps
    regards
    Raed

Maybe you are looking for

  • "Data Error (cyclic redundancy check)" when trying to uninstall/reinstall

    I get this error message when trying to delete the iTunes and quicktime folders from Program Files. The programs appear uninstalled except these folders cannot be deleted. I have opened the folders and deleted everything inside that I could delete wi

  • I need to add symbols!!

    Hello there and Greetings, I need to add a few symbols to my keyboard, but I don't know how to do it. I need to add a registered symbol and a copyright symbol. I have been looking on my mac for hours and can't find out how to do it, and I can't find

  • Standard SAP Returns

    Hi Guru's, We have a situation where a purchase order was created. Goods were received and used in production to create a FG. The GR also has an invoice posted towards it. What hapened is the PO has an incorrect price and as such will generate a larg

  • Problems Creating Custom Skin w/ further functionality

    Hello, To add that final piece to my project i have been attempting to modify the controls within the flash files located in the program files. I have been successful in editing the look without any problems, but that isn't the end of my plan. I have

  • I need to create this effect in PS CS3

    It is not a drop shadow as I tried that . All I know is how to use the rectangular marquee to get the rounded corners. What is the correct term for this effect. effect around ring is here http://dagwaremedia.com/pshopeffect.jpg