How to hide value "result" on chararcteristic?

Hi,
When I am running Ad Hoc report on ODS I get in the first row result calculating all rows.
With key figures it's okey, because i get summation of all rows, but with characteristics I get value "RESULT".
I want to see only value for summation and where the characteristics are I don't want to see value "RESULT".
I can only get that if I put key figure in the last column, but I want to put it somewhere in the middle.
Any ideas?
Regards,
Uros

Hi
In query designer -> Go to change query ->Go to characteristic-> right mouse click-> properties ->Supress result rows -> Here select always.
Do this for all characteristics except the first characteristic (top most in ROws section), otherwise you will not get Result at all.
Hope this helps
Regards
Pradip

Similar Messages

  • How to hide values in F4 input help

    Hi firends,
                        I have a requirement to hide the values from F4 input help. In tcode F110, when I press F4 in Identification field then i will get the F4 help value for identification for which payment run is already done. I want to hide that data in F4 help and i don't want to delete it from table. Is it possible??
    Please help me.
    Thanks,
    Ziad

    Hi,
    Please check this [Thread for your help.|Re: Regading OVS]
    You can check also [This thread.|Re: Hide F4 personal value list;
    Thanks,
    Abhijit

  • How to hide value of characteristic in CV04N

    Hi,
    Regarding  a characteristic connected to a class in class type 017.   The characteristic has a value with sensitive information that should not be seen by all that have access to the trx CV04N or display document. We have set up the authorisation role to reflect the document type.
    I have searched the forum without finding any solution to this. I have tested:
    - "No display" tick in the definition of the characteristic. This only prevents the characteristic to be shown in input screen.
    - "Display Relevant" in the definition of hte class. This does not prevent the characteristic to show eather.
    The text from F1:
    "Display Relevant
    This indicator shows that a characteristic is to be displayed.
    In applications where you display characteristics, you can query this indicator internally in the program, so that only the display-relevant characteristics are shown. If no characteristics have the Display-relevant indicator, all characteristics are displayed."
    Why does this not work in DMS trx CV04N? Is this an error in the system?
    Or do I have to use the solution with authorisation mentioned on the Class? (under tab "Basic data")  Authorisation groups BGRSE to solve this?
    Text form F1:
    "Authorization group for finding objects
    Authorization key: determines whether a user is allowed to use this class to find objects.
    This authorization must be defined in the user master record. The authorization object is BGRSE."
    Please advice
    Thanks
    Ellen

    Just for others information, from OSS:
    after doing further analyses regardin the mentioned behavior I found
    out that the mentioned 'Display relevant' flag is only used for making
    the characteristic visible/invisible on the selection screen of search
    transactions like CV04N for example. But this flag is not mentioned for
    the creation process of the ALV result list.
    A possible solution could be to use the BADI DOCUMENT_MAIN01 with method AFTER_SEARCH_DATA. Maybe you can achieve it to influence the layout behavior with a special check."
    BR
    Ellen

  • How to hide dynamic parameters values in the URL with Reports 6i

    Hi,
    I want to know a way of hiding the parameters values when asking for a report through the web.
    Now I'm using the Reports 3.0.5.8 with a Cartridge defined in the Oracle Web Application Server 3.0.1.0.1. When you ask for a report with the parameters DESTYPE = cache and DESFORMAT = pdf, it is fully generated and in the Address or Location box of the browser, you can see http://webserver/cache/report.pdf (where cache is the virtual directory defined in the OWAS in which the .pdfs are cached). So, users cant see the Url used to generate the report.
    Im trying to upgrade this configuration to Reports 6i with Cgi in a web server. I generate reports with no problems. The problem I have is I cant find how to hide the parameters values as before. I mean, when I ask for a report, once its generated I can see http://webserver/cgi-bin/rwcgi60.exe?server=ServerName&report=report.rdf&userid=user/pass@connection&destype=cache&desformat=pdf&P1=value1&P2=value2 in the Location box. It allows user to ask for another report changing the values of the parameters. I use these parameters to execute some query written in the Data Model. For example, imagine that the P1 represents the company id, the user (that is supposed to see only data of its company) can change this id, ask for a new report and see data of another company.
    Ive already tried to use the key mapping option, but its not useful to me because the parameters values are dynamic and its impossible to define different entries in the cgicmd.dat for each possible value. The option of loading the parameter form before running a report is not useful to me either, because there exists specific screens for this purpose.
    Is there any solution?
    Thank you.
    Marma Bonfiglio.

    Hi Rakesh,
      I am using BI  7.0
    The last option I have is 'Hide' for 'Calculate single values as' .
    I have the below options  for 'Calculate single values as'
    1. Normalise  according to Next group  level  Resul.
    2. Normalize according to  Overall Result
    3. Rank number
    4.Olympic Rank Number
    5.Maximum
    6. Minimum
    7.Counter for all detailed values
    8.Counter for all detailed values that are non zero
    9.Moving average
    10.Moving average  That is  Not zero ,null or Error
    11. Hide.
    So could you please tell me where i can find 'suppress result' option for the keyfigure .
    Many thanks

  • How to display the results in order by based on search value

    Hi All,
    how to display the results in the below order.
    CREATE TABLE TEST( SONGID  NUMBER, TITLE   VARCHAR2(200))
    INSERT INTO TEST(SONGID,TITLE) VALUES (10,'AHMADZAI, MIRWAIS (CA)/ MADONNA (CA)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (11,'CICCONE, MADONNA (CA)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (12,'DALLIN, MADONNA LOUISE/STOCK');
    INSERT INTO TEST(SONGID,TITLE) VALUES (13,'MADONNA');
    INSERT INTO TEST(SONGID,TITLE) VALUES (14,'MADONNA (A)/ AHMADZAI, MIRWAIS (C)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (15,'MADONNA (CA)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (16,'MIRWAIS AHMADZAI, MADONNA');     
    INSERT INTO TEST(SONGID,TITLE) VALUES (17,'MIRWAIS (CA)/ MADONNA (CA),AHMADZAI');
    INSERT INTO TEST(SONGID,TITLE) VALUES (18,'MADONNA (CA),CICCONE');
    SELECT *FROM  TEST WHERE INSTR (TITLE, 'MADONNA') > 0
    output:
    SONGID     TITLE
    10     AHMADZAI, MIRWAIS (CA)/ MADONNA (CA)
    11     CICCONE, MADONNA (CA)
    12     DALLIN, MADONNA LOUISE/STOCK
    13     MADONNA
    14     MADONNA (A)/ AHMADZAI, MIRWAIS (C)
    15     MADONNA (CA)
    16     MIRWAIS AHMADZAI, MADONNA
    17     MIRWAIS (CA)/ MADONNA (CA),AHMADZAI
    18     MADONNA (CA),CICCONE
    Expected output :
    13     MADONNA
    14     MADONNA (A)/ AHMADZAI, MIRWAIS (C)
    15     MADONNA (CA)
    18     MADONNA (CA),CICCONE
    ...if user searches with 'MADONNA' , I have to display the results like title starts with 'MADONNA' first then rest of the records.
    Please let me know is it possible to display the results in that order.
    Regards,
    Rajasekhar

    This may be a bit more accurate:
    SQL> SELECT *
      2  FROM   TEST
      3  WHERE  INSTR (TITLE, 'MADONNA') > 0
      4  ORDER  BY INSTR (TITLE, 'MADONNA')
      5           ,TITLE
      6  ;
                  SONGID TITLE
                      13 MADONNA
                      14 MADONNA (A)/ AHMADZAI, MIRWAIS (C)
                      15 MADONNA (CA)
                      18 MADONNA (CA),CICCONE
                      12 DALLIN, MADONNA LOUISE/STOCK
                      11 CICCONE, MADONNA (CA)
                      17 MIRWAIS (CA)/ MADONNA (CA),AHMADZAI
                      16 MIRWAIS AHMADZAI, MADONNA
                      10 AHMADZAI, MIRWAIS (CA)/ MADONNA (CA)

  • How can I make a row of cells containing 3-digit decimals, who's values resulted from calculations within the spreadsheet, appear as durations of minutes and seconds?

    Row 6 in this spreadsheet is the result of Row 2/Row 3 as evidenced by the formula listed while Cell Y6 selected. How can I make the values in this row appear as durations of minutes and seconds rather than 3-digit decimals? For example, rather than appearing as 9.84 I would like the value of Cell Y6 to appear as 9:50 or 9min 50sec. (obviously .84x60seconds 50 seconds). I tried changing the cell formats from "number" to "duration," but no change is made. Using the "duration" format does however work if I am manually entering the decimal value into the cell rather than allowing it to result from another caluclation within the spreadsheet. Is there a solution to this within Numbers '09? You can see why I would want the "pace" displayed in minutes and seconds. Thanks in advance!
    Ryan

    Hi Ryan,
    You wrote:
    "The problem is that my "Distance" is a row of automatically generated values resulting from ((Row1/60)*Row 6). Changing the format of Row 1 to minutes causes row two to be expressed as a duration, which obviously it shouldn't because it is a distance. The spreadsheet has to be designed so that all I have to manually input on each entry are Row 1 Values (Time) and Row 6 Values (Average Pace). The rest of the cells must be automatically poulated as a result of formulas."
    I'm assuming that where you say "Row 1" in this you mean "Row 2", which is labeled "Time" in the example in the OP.
    In the original post, you presented a formula from cell Y6. Replacing the Header labels in that formula's cell reference with the Addresses of the referenced cells, the formula was:
    Y6: =Y2/Y3
    In this post, you are saying that Y6 contains entered data: "...all I have to manually input on each entry are Row 1 Values (Time) and Row 6 Values (Average Pace).
    Which is correct?
    Regards,
    Barry

  • How to Hide advance button in input list of values Popup

    I am using input List Of Values component to select value from search Pop up, in that popup i need only basic search only , i am unable to hide advance button... plase tell me how to hide this advance option

    I haven't tried this, but check
    How to remove basic/advanced button in inputListOfValues search dialog
    This does not have complete solution, but might give you some lead.

  • How to hide edit link for  some rows in report? (according to value of col)

    Helo,
    How to hide edit link for some rows in report? (according to value of column)
    regards
    siyavuş

    Hi siyavuş
    You can do this by taking the edit link off the report and putting it into your report SQL.
    Use something like Select CASE WHEN (condition)  THEN
    'Put your edit link in here as an html Anchor like<a href="(target)">Edit</a>'
    ELSE
    tt.value
    END edit_link
    FROM test_table tthope it helps,
    Gus..
    You can reward this reply (and those of other helpers) by marking it as either Helpful or Correct.
    This allows forum users to quickly find the correct answer.
    ;-)

  • XCelsius Map component - how to hide mouse over region value?

    Hi guys,
    I have one problem with a map component:
    Please open standard Xcelsius map sample: File -> Samples -> Map
    If you turn your mouse to state, for example Alabama you will see "Alabama 31.66"
    I need only "Alabama", how to hide this "31.66"?
    I created colored map but user should not see the value, he should see just name of the map region
    Any ideas?
    Thanks in advance

    Question answered
    Option is on the Apperance - Text tab

  • How to hide Total value in RFX response webdynpro component

    HI experts,
           We are working on SRM 7.0 and there is a requirement to hide the Total Value that appers on RFX Response Header for a particular Role.The webdynpro component is FPM_IDR_COMPONENT and View is IDR_VIEW..I have searched the SDN and found that CL_FPM_IDR class methods can be used to hide the Items.But method SET_ITEMS_VISIBILITY sets the visibility for all items,but i want for a particular pair.Please advise me how to hide this field value pair dynamically.
    Regards
    Sonika

    What you might try is to remove the particular key_value pair from the lt_items table which is passed to the IDR.
    So search in(WDA/Assistance class/Feeder class ) and find out the place ,from where this table is filled and called to set items on IDR.
    Remove the pair before from table before the call to IDR.

  • How to hide Rev. column in Search result Classic View

    Hi,
    My Requirement is to hide Revision display Column in Search result classic view page (How to customize Search result classic view customization).
    please any body can help.
    Thanks and Regards
    Srinath
    Edited by: 922944 on Mar 23, 2012 4:06 AM

    Hi.
    In WebCenter Content forum you'll find more help.
    However try to hide the column following this steps:
    Go to Web Layout Editor applet in Administration -> Admin Applets.
    In Options -> Query Results Pages and edit the StandardResults. In text 2 delete reference to revisions.
    If it don't "hide" revision column then probably have to create a custom component.
    Regards.

  • Result row does not hide value

    Hi all,
    I have some calculated key figures that are using formula variables to get dates to do calculations on.
    Since summing up date values does not lead to anything meaningful, I selected the 'Hide' value in the 'Calculate results as...' section.
    However, the results row is still showing an 'X' in this column when I run the query.
    I have one calculated key figure for a date using this same method (formula variable from an infoobject) and the result row is hidden correctly.
    Does anyone have any idea on why the result row would still display even though it supposed to be hidden?
    Thanks in advance.

    result rows needs need to be suppressed for characteristic properties.
    in query designer , click on characteristics in your reports ( i.e  rows ) goto display property supress the result rows..

  • How can i do with labview program,when i have 20 different values,and 1 want to add it with constant value.and how to get the results?

    how can i do with labview program,when i have   20 different values,and 1 want to add it with constant value.and how to get the results?

    Why do the 20 values have to be different? The same code should work even if some are equal.
    What do you mean by "get the result"? The result is available at the output terminal and all you need is a wire to get it where you need it. That could be an indicator, another operation, or even a hardware device.
    What is the data type of the 20 values? An array? A cluster? A bunch of scalars? A waveform? Dynamic data?
    LabVIEW Champion . Do more with less code and in less time .

  • How can I multiply all values of a 4-element array with all of its inverse values resulting to an array having all 16 products?

    I'm quite new to LabVIEW (v.8.0) and I'm trying to figure out the easiest way to have a 4-element array multiplied by its inverse values resulting in a 16-element array
    Array 1 values = 1, 2, 3, 4
    Array 1 inverse values = 1, 0.5, 0.33, 0.25
    Resulting array = (1, 0.5, 0.33, 0.25, 2, 1, 0.66, 0.5, 3, 1.5, 1, 0.75, 4, 2, 1.32, 1)
    Any advice would be appreciated. Thanks!
    Solved!
    Go to Solution.

    Attachments:
    mo.doc ‏27 KB

  • How to hide request with no results in Dashboard?

    Hi Experts,
    I have a dashboard with 3 requests in one section. The 3 requests are very similar to each other but need to be separated due to the way the metrics are calculated and the location of the datasource.
    DepartmentName Sales Month
    GroupName Sales Month
    TeamName Sales Month
    There is no hierarchy and all three don't relate to each other.
    The issue I am having is that if the first request (lets call it Department Request) doesn't have any data for that particular month, it still displays the column heading.
    How can hide the request or the column headings if there is no data for that request?

    --Report Dropdown
    --here is a detailed explanation from David using Guided navigation
    --http://forums.oracle.com/forums/thread.jspa?messageID=3511377
    --So, essentially, when you 1st report returns no data then you can hide that section, to itself.
    Thanks for the suggestion.
    This won't work for my requirements because the user doesn't want to select the reports. They want to input the para maters and look at the requests that have the data. If a request doesn't return data, then they want it blank.
    This dashboard will grown in terms of requests so the user doesn't want to select each report that they might need. Also, users will not know which request might or might not have data.

Maybe you are looking for

  • Why are some of the Internet Radio category lists empty?

       For example, there are no stations listed under Country.  This worked the last time I tried it several days ago.

  • Input and output arguments for NXT Block

    Hello, Is there a solution to passing arguments when, with direct command Start, we activate a program (block transfered on NXT) from LV ? (block created with the NXT library, with a command on a input). Idem in output, can we read the response of a

  • JSP and EJB interaction

    Has anybody tried the setup below, if so did it work, if not is it possible ? A JSP makes use of a java bean as one of its actions. The Java Bean actually creates a lookup to a local interface implementation for a session EJB. This EJB then performs

  • Restriction of posting date in transaction CO11N for partial confirmations

    Hi all,       I am trying to restrict(by checking thru an exit)  the posting date in co11n , for this i m using enhancement CONFPP04.      Import parameter AFRUD_IMP IS USED.      Now when i m putting  production order no , operation activity no.(for

  • What does this IPS message indicate?

    evError: eventId=1229364010346777529 vendor=Cisco severity=warning originator: hostId: IPS appName: cidwebserver appInstanceId: 22081 time: Dec 18, 2008 19:30:56 UTC offset=0 timeZone=-8 errorMessage: received fatal alert: certificate_unknown Message