Show only overall result in query

Hi Experts,
I have a problem with a web template that I cannot seem to resolve.  I have a query with calculated key figures and the overall result is calculated as an average so that I can determine percentages etc.  It is only the overall result that my customer wants to see.  However if I remove the sales doc characteristic then the overall result is also lost.  The query needs sales doc to get the correct result, but then the user has to scroll to the bottom each time to see what he wants to see.
So my question is, how can I make the query/web template display only the overall result line without taking out sales doc and losing each line?
Many thanks in advance.
Sean.

Hi Sean,
From what I could understand ,you can try the following.
Since you want the average of a calculated key figure with respect to Sales doc  ,u can set the property of the calculated key figure as aggregation = average.
and referance characteristic as 'sales Doc'
Hope this helps.
Varada

Similar Messages

  • How to show only the result of a query

    Hi experts,
    i need to show only the result of a query (hiding all the rows)
    according to mathematical functions like sum, average, count ets. i need the result to be shown widhwise the query (Horizontal)
    thanks a lot
    Nir

    Hi
    I did get exactly.....but if i m right then you can do this by selecting the keyfigure goto the calculation tab select calculate result as sum or whatever you want to use.
    Regards
    Lalit k Tyagi

  • How to show only the result line of a Query result ?

    Hi Experts,
    I want to show only the result line of the Query. Is this possible in query Designer ?
    In BeX Workbook, I can hide the rows but they grow or shrink dynamically and hence it is unpredictable how many rows to suppress.
    If you have any solutions/workarounds, please reply !
    Rekha

    VBA coding can be used to display just the Result rows.
    Somthing like this - modify as needed.
    This scans the range of query results looking to find the last row, then checks those rows to see if the word Result is found or not, deleting (or you could just hide) the detail rows.  There is also a LEAF option in BEx Boolean options that returns a 1 or 0 depending on whether a row is a detail or result that could also be used to hide rows rather than looking for the presence of "Result" in a particular column
    Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
    For rownum = 17 To 64000 Step 1
    ' col 2 is the Total Result, col 3 is the User Group result
    If Cells(rownum, 2) = "" And Cells(rownum, 3) = "" Then
    lastrow = rownum - 1
    Exit For
    End If
    Next
    For rownum = lastrow To 17 Step -1
    If Cells(rownum, 2) = "Result" Or Cells(rownum, 3) = "Result" Then
    Rows(rownum).Hidden = False
    Else
    ' Rows(rownum).Hidden = True
    Rows(rownum).EntireRow.Delete
    End If
    Next
    End Sub

  • URGENT : display only overall result

    hi........my query to track the performance of dealer.
    in the selection i've added customer creation date (user entry), customer group as Dealer, branch (user entry), division (user entry) & fiscal year varient.
    the structure is:
    in the row : bill-to-party
    in the column :  last year sale |         this year sale |          last to last year sale |
    if i run this qurery in the same workbook for different creation date then i just want to see the overall result for each date range.                   
    how can i do this? pls help........

    Hi Priya,
    Just remove Bill to party from Drill down, i mean no characterstics in drill down (along rows in your case) from all the sheets of workbook.
    Only keep your 3 Key Figures along the cloumns.
    It will just show you Overall Result. As you want overall result i dont think you need report displayed by Bill-to
    Thanks
            Chitrarth Kastwar

  • Only overall result need tp be displayed after query execution

    Hello Everyone,
                                        I am requirement on query analysis " OVERALL RESULTS".  The scenario is explained below.
                                I am dealing with  BW HR Reporting. Now if i execute the query  from 2008. 01 to 2008 03. The Result will be displayed for 2008.01, 2008.02, 2008.03. and atlast the overall result. The requirement is , after executing the query for the calday 2008.01. to 2008.03 , i need to get  only the OVERALL RESULT". The details of the individauls months will be taken care at the jump target level.
                               Can somebody give th inputs from your end, so that only the overall results will be displayed.
                               Appreciate your immediate response. Thanks in advance.
    Regards,
    pradeep

    Hi
    How about suppress results on the characteristic properties
    Regards

  • Overall result in Query designer displaying ' * ' for one kf when executing

    Hello
    I have a got a kf in which value ' * ' is getting displayed when i have done display overall results for one of my chars. Now what i am hoping is that this can be because there are too many records in the display and the total is too huge and that is the reason it is disaplying * in it. Please can somone guide me if there is some setting that can be done

    Hi Tom,
    This is because you have different unit or currency in the data record and you can not sum it if they are different unit/Currency therefore system is showing you *.
    You can try NODIM(KF) and see if it is adding or try currency or unit conversion at query level so that all records in the query have same unit/currency.
    Regards,
    Kams

  • Display of only overall Result

    Hi
    Currently we  have  a ARreport is displayed following manner
    Customer          0- 30 Day    30 - 60 Days  E.t.c
    A                  1000          6000
    B                   230          10000
    Total              1230          16000
    User Want to see the report in following manner
                     0 - 30 Days   30 - 60 Days
    total             1230          16000
    when he click on 1230, he wants to view the customer who makes to 1230
    For information - 0-30 days is a calculated Key figure
    if we remove the customer from the row. the total is becoming zero.
    your help is appricated

    Hi,
    Try this:
    Create a structure in rows also..from context menu>new selectino>drag and drop Material. Rename new selection as Material.
    Now drag and drop Material into rows next to structure.
    Right clcik on Rows--->display as Hierarchy.
    Now execute the Query.you will see Material (Which is Structural element description)...and if you expand it,you will get individual material values...
    But as for as i know you would get overall result only for Basic KeyFigures.
    Just tryout and let me know.
    please don't forget to assign points to useful answers.that's the way of saying thnaks here in SDN.

  • How to show only key in mdx query

    Hello Experts
    i have mdx query such as :
    SELECT
    [Measures].MEMBERS ON AXIS(0) ,
    NON EMPTY [ZCHANNEL].members
    Properties [ZCHANNEL].[2ZCHANNEL]
    ON AXIS(1)
    FROM ZIC_TPL/ZIC_TPL_DETAIL
    SAP VARIABLES
    [ZVSOCALM] INCLUDING [0CALMONTH].[200605]
    the result from this query are zchannel text and zchannel key
    how to show only zchannel key ?
    really appreciate your help.
    regards
    JeiMing
    Message was edited by: JeiMing Tjiam

    Hi Juice
    Yes, i have already tried setting zchannel as key only in my query
    but the result from mdx query still shown key and text
    Regards
    JeiMing

  • Pie Chart on Overall result only

    Hi
    I have records like below
    Profile  TotalOrders    ErrorsOrders         NoErrorOrders
    AllTel    20                  15                        5
    Cellco    64                  34                       30
    Overall
    Result    84                   49                       35
    I want the Pie Chart on Overall Result only . So i created the WebTemplates for it and i included the Chat and Table webitem .
    So how can i get the chart on only overall result .
    Regards
    Suresh

    You want to display both on the same chart item ?
    In this case, you've to define the query with display of the overall result, and change the properties of the chart item, to say that you display the results. Don't know if it's flagged on or off by default. No need of 2 DP. I thought you wanted to display a chart with details on one side, and an overall result on the other side.

  • AppleScript Editor -- Event Log shows only Result

    The Event Log pane at the bottom of the AppleScript Editor window shows only the result after I run a script, regardless of whether I choose the "Result" button or the "Events" or "Replies" buttons. I've only recently begun consulting the Event Log regularly, so maybe I'm not completely familiar with how it's supposed to work. But I'm fairly certain that, until yesterday, after I ran a script, the Event Log would show a detailed log of the script in action, and if I clicked on the "Replies" button, it would also show the result of each line. Isn't that how it's supposed to work?
    For example, if I run this script:
    tell application "Finder"
              get version
    end tell
    In the bottom pane, with "Events" and "Replies" selected, all I see is this:
    Result:
    "10.8.2"
    Shouldn't I see more than that? I'm sure that in the past I've seen actual lines from the script in that window.
    Thanks.

    The Events button will show Apple Events such as tell statements and display dialog commands, while the Replies button will show the reply to those events.  The Result button just shows the result of the script, which is the value returned (or the last value of the (internal predefined) result property).
    The Events History window isn't really meant to be a debugging console, but you can also add your own entries there by using the log command.

  • Wrong overall result population in the query output

    Hi All,
    I have few issues with my query..
    we have a query which gives  report about the brand name, brand element, brand group, netsales, cumulative sales and royality percentage.
    1. the over all result for the Royality percentage is not getting calulated properly... i have compared the result setting of the other fields which get proper overall result.  i dint find any difference even then i face this issue
    2. The royality percentage is a% of netsales.. but here is issue is when i drill down thro Brand element i am getting proper amount i.e. a% of current sales but when i remove drill down am getting wrong value... and this happens only for one brand not for others...i dont understand why is this happening..
    3. let us consider we have 4 brands.  for 2 brands my royality percentage is getting calculted properly but for 2 brands it is showing wrong value.
    can anyone help me out in this issue...
    i dint get even a single clue regarding this... need your expert help

    Hi ,
    in our report we have calculated roayality fee based up on current net sales.
    current sales comes directly from the infoprovider..
    the royality fee is 6% of current net sales for each brand element.
    Now the issues are
    1. we have four brands... for two brands we are getting correct Royality fee.. i.e. exact 6% of its respective current net sales.
    but for two brands we are not getting the 6% value..
    2. There is one more field named Brand Element.  when i drill down the Brand element, for one brand (out of two which gets wrong royalty fee) alone my royalty fee is getting differed.
    ex. with drill down royalty fee is 82.5 (which is 6% of its current net sales)
          after removing the drill down royalty fee is 63.5 (Which is not related)
    it is not happening for other brands.. why is it behaving so.
    3.  What ever the royalty fee is the overall result of the royalty fee is not getting calculated properly..
    I.e.  for four brands if i calculate the total of royalty fee it comes around 380
    but now it is displayed as 272 (no idea what total it is)
    thanks for the help in advance

  • How can I show all the results returned by a sql query?

    Hi guys,
    I need your help.
    Let's say I have one table: TableA. Fields of TableA are aleg, anon, apes. The following sentence can return, in general, several rows: select anon from TableA where aleg = somevalue. I'd like to show the result of column anon but no luck. If I try to show the results in a TextArea and the origin is an sql query only shows the first row value. I tried Show as: show as text (based in PLSQL) and coding an anonymous plsql block as
    DECLARE
    v_anon TableA.anon%TYPE;
    CURSOR v_cur IS
         select anon from TableA where aleg = somevalue;
    BEGIN
    OPEN v_cur;
    LOOP
    FETCH v_cur INTO v_anon;
    EXIT WHEN v_cur%NOTFOUND;
    :FIELD_IN_FORM := v_anon;
    END LOOP;
    CLOSE v_cur;
    END;
    but in this case it's not shown any result.
    So the first question is what kind of field should I use to show the result. And the second one is what can I do to being able to show all the results returned by the query (provided that is more than one single row).
    regards

    Hi Denes,
    Just starting with apex. I think I know how to show the results in a report region. I've simplified the posted question.
    A more detailed question would be: Suppose you have a region where you have put several text areas to accommodate the result of a multi-column query (lets say for TableA) that only returns one row, each column value returned put in a different text area. Also you want to show the values of other fields in TableB that depends on some value just retrieved from TableA and that you want all values retrieved (from TableA and the linked TableB) to be show in the same region. Is that possible? If yes, how?
    Thank you in advance

  • Dont want to show overall result in my report

    Hi
    Probably quite simple,  i just dont fint how to " NOT show overall result in my query"

    if u have infoobject characteristics on columns, suppress results there also
    *helpful answers deserve some points*

  • Query with a condition - Overall results row is wrong

    Hello,
    I have a query that uses a condition.  The query gives me the top 10 brands according to the Net Sales.  The query itself runs fine.  I just noticed however that the Overall Result row isn't giving me the correct number.
    For example:
    <b>BRAND            NETSALES    MARGIN %</b>
    Brand1           $100        25%
    Brand2           $60         10%
    Brand3           $20         15%
    <b>OVERALL RESULT   $210        2%</b>
    As you can see it does not add up or average correctly.  This query has no macros or anything, it only uses a condition.
    Any suggestions?
    Thanks,
    Nick

    A workaround I have found is the manual directions in this OSS note: 572910
    Anyone have any follow up?
    Thanks.
    Nick

  • TS1702 i if use "search" in music on my ipod touch 5th gen the result just show only album and playlist but nothing song result.whats wrong with it?please help

    i if use "search" in music on my ipod touch 5th gen the result just show only album and playlist but nothing song result.whats wrong with it?please help

    The users guide says:
    Spotlight searches the following:
    Contacts—All content
    Apps—Titles
    Music—Names of songs, artists, and albums, and the titles of podcasts and videos
    Podcasts—Titles
    Videos—Titles
    Audiobooks—Titles
    Notes—Text of notes
    Calendar (Events)—Event titles, invitees, locations, and notes
    Mail—To, From, and Subject fields of all accounts (the text of messages isn’t searched)
    Reminders—Titles
    Messages—Names and text of messages
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsynce all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iOS device.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

Maybe you are looking for

  • (INVOICE) PAYMENT BLOCK DUE TO QUALITY REASON

    Dear All, We are working on QM implementation for one of our client. The process is as follows 1.     MIGO with Mvt 103 2.     Inspection lot is generated after Mvt 103 3.     Usage decision for inspection lot. Lot accepted  and moved to Unrestricted

  • Can I use Adobe Creative Cloud on Ubuntu?

    Can I use Adobe Creative Cloud on Ubuntu?

  • Exchange SP1 to SP3 RU5

    Hi, I'm in the process of planning my update from Exchange 2010 SP1 to Exchange 2010 SP3 RU5.  The roles are all hosted on a single Windows Server 2008R2 SP1 host.  The domain and forest are using the Server 2003 functional levels.  My questions are

  • Number of connections limited to 5 users / ips...

    is there a way around this? i have to reboot to clear this up! why doesn't weblogic server release ips once user logs out or once ip not in use anymore? -- p

  • Different sort behaviour

    Hello, can anyone tell me the cause ? when i run the code below with -Duser.language=tr JVM environment, it works expected well. But when i run it with -Duser.language=en JVM environment then some words sorted wrongly? I've used collator for correct