Query Designer - Hide Repeated Key Values - Doesn't work in the web

Hello Experts,
I'm facing a problem with a query. The user requested that he/she wants to see all the values of the key values.
I already unchecked the option "Hide repeated key values" in query designer, but it still hiding it. I tested in BEx and it's working fine, but when I run it in the web the key values are being hidden.
Anyone knows what is happening? I'm not using WAD and there is no possibility to use it.
Thanks,
Helder

Hi,
I have seen this problem - setting that option still does not show the repeated key values in web. You will indeed need to use WAD and uncheck that option in the properties of the analysis item. If you can't do that, the other option would be to do this change in the default web template (which is generally 0Analysis_pattern for BI WAD) but note that this will affect all queries.
Also, please note that if the query is exported to excel, it will show the repeated values. This is the reason sometimes the users ask for key values to be repeated - maybe you would want to confirm that.

Similar Messages

  • How to deselect query property 'suppress repeated key values'

    hj gurus,
    In BEx analyser there is a query property 'suppress repeated key values' which can be de-selected.
    regards,
    Preety

    Hello preety.
    Is simple.
    In BEx query designer push the button designated by "query properties" (the 13 button from left to right).
    Go to the tab "Display" and mark the second option "Hide Repeated Key Values"
    And there you go.
    Please assign points.
    Diogo.

  • Hide Repeated Key Values

    Dear BW experts,
    In the query properties >> on Display Tab within Display options, there is a check box to check or uncheck for "Hide Repeated Key Values".
    However to reflect these changes on portal, it is suggested on the following help.sap link that the query iview properties have to changed as well. (please see the note below the link)
    I just looked at the query's iview properties but couldnt find a particular property that seems to reflect this change.
    Which property on the iview needs to be changed to reflect the "Hide Repeated Key Values" property in BEx.
    Please advise...
    http://help.sap.com/saphelp_nw04s/helpdata/en/5b/30d43b0527a17be10000000a114084/frameset.htm
    Note: that the setting made to hide repeated key values when using the query as a data provider in Web applications is not evaluated. <b>You need to make the settings again in the property dialog box of the query view.</b> When the query is used in the BEx Analyzer, the settings you make here are taken into consideration.
    Thank you...

    Hi A.H.P,
    In the template, as u suggested, i noticed that the 'Suppress Repeated Texts' under 'Specific'tab <u><b>had</b></u> a checkmark already.
    I also tested it by removing the checkmark, still it's not giving the expected results.
    Current result:
    Sales ID_____Comp Code____Division code
    xxx_______________aaa_________111
    ______________________________000
    __________________yyy_________123
    ______________________________345
    Expected result:
    Sales ID_____Comp Code____Division code
    xxx_______________aaa_________111
    xxx_______________aaa_________000
    xxx_______________yyy_________123
    xxx_______________yyy_________345
    I got this in the BEx, but it's not reflecting the change in the portal. Please advise with any suggestions...
    Thank you....
    Message was edited by: Newyorker

  • Hide repeated key values - server wide

    Hello all,
    does anybody know if there's a setting which sets the "hide repeated key values" query properties server wide, so I don't have to make that setting for each query?
    Thanks,
    Tudor

    Hi
    Check in SPRO customization report relevant settings for availability of options like this.
    But i think such option is not available in report settings with server level
    REgards
    M.A

  • Hide Repeated Key Values Setting Not Saved

    Hi Experts,
    We are working on BI7. Currently we are changing the Query Properties to display Repeated Key Values. However, whenever we execute the reports, all repeated key values are still hidden. When we return to BEx Designer, the setting is reverted back. Please advise on why this is happening. I am pretty sure we have saved then execute the query.
    Any help is greatly appreciated.
    Thanks,
    Juice

    Its some problem with Bex I guess.
    Go to RSRT, give your query name and do "Generate report".
    Execute it in RSRT and check if its fine.
    If its fine in RSRT it should reflect in your analyzer too.
    Hope this helps.

  • Query Bex direct input filter value doesn't work

    Hi experts,
    when I use a bex report and direct insert a value in filter on the left; the report doesn't execute the request.
    For exemple I would like to filter a value in 0COSTCENTER; I inserted direct value on the filter cell and the report doesn't return the aspected value.
    How I can resolve this issue?
    The query is based on planning level.
    Thank you for any answers.
    Valerio

    Hi Leszek,
    At the left I digit a value for “Centro di Costo” (0COSTCENTER); for exemple I want to digit the value 8213-01 (or IT01/8213-01) and then 'enter'... The report does a refresh but then don’t execute the filter.
    The same procedure runs without error if I select the value from menu “select filter value”.

  • My 'enter' key doesn't work in the web-adress bar

    It just acts like I didn't press the key at all!
    I've even tried the virtual keyboard!
    Please help me

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Servlet doesn't work in the Web app after deployed to weblogic 7.0

    Hi,
    I'm new to weblogic.
    I recently developed a web application. It runs perfectly in
    Jdeveloper Embeded server on my local machine. The app was talking to
    a orable 9i database.
    However after I deployed it to weblogic 7.0 server. All servlets don't
    work any more. Some give me 404 error which I figured it might have
    something to do with my web.xml. I didn't have enough servlet-mapping
    definition. I corrected and now I've got new 500 error. I'm wondering
    if I need to do some oralce configure thing in the admin console. But
    it does work in Jdevlopera. All connection statment and sql statements
    were in the servlet code. Is here anything I miss? please help. I've
    been stuggle with this for 3 days. Any tip will be highly appreciated.
    Thanks again.
    When I run a servlet by calling a URL. It gives me the following
    error. What could this go wrong?
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from
    fulfilling the request.

    Make sure to have the right servlet mapping:
    For example:
    <servlet-mapping>
    <servlet-name>Servlet1</servlet-name>
    <url-pattern>/Servlet1_Url</url-pattern>
    </servlet-mapping>
    Then call the servlet as
    http://Hostname:7001/contex_root/Servlet1_Url
    Since your servlet is talking to the Oracle9i database, If you come across any database connecting problems
    make sure classes12.jar is in the classpath before startting WebLogic7.0
    Make sure the WL_home/weblogic700/server/lib/classe12.zip is not loaded by moving it into a different folder.

  • Hide Repeated Key Valuse is not useful in Broadcast Query

    Hi,
    I have a problem about the setting "Hide repeated key values" is not useful when broadcasting queries by format XML(MS Excel). Our server support package is SP19. Does anyone has the similar problem? Help.
    Thanks,
    Johnson

    Hi Johnson,
    Did you solve the issue?
    I have faced with same problem.
    Thanks
    Alkan

  • Show Repeated key values in Reports and Export Into Excel

    Hi Experts,
    Currently I am working on the BW3.5 version. Our client requirement to display the repeated key value in web and export same into excel. I have followed the steps in web template which mentioned below to achieve the requirement.
    1) In my web template, add the following line to the Template Properties object tag (the tag at the very top of the web template in HTML mode):<param name="SUPPRESS_REPETITION_TEXTS" value=""/>
    After the change web template change, Myself execute the report in web, Its fine web. But I export into excel, again the key values are suppressed. So I have followed the steps in query. Then its fine. I mean, I can export into excel with repeated key values.
    2) In my query, in Properties and on the Display tab, unchecked "Hide Repeated Key Values".
    But do we have any other option without changing query properties to achieve the requirement.. I am fine with the web template change("SUPPRESS_REPETITION_TEXTS"). But I do not want to change the query properties.
    Please help me to fix the issue. Thanks in advance.
    Thanks,
    RR

    Hi Experts,
    I have come across one of the suggestion in the below location. Could you plz help me to implement it.
    http://www.sapfans.com/forums/viewtopic.php?f=16&t=118185
    Suggestion:
    You can do exactly what you want, but it will take either a button changing the properties of the web item or a javascript function added to the context menu getting the properties of the table item and changing it to "X" or "". These are just two examples, there are other ways to do this. This is the actual code that sets the suppression for the repeated texts. Hope this helps.
    SAP_BW_URL item=âu20ACu2122TABLE_1âu20ACu2122 SUPPRESS_REPETITION_TEXTS=âu20ACu2122Xâu20ACu2122
    Thanks,
    RR

  • Undo Suppress Repeated Key Values

    Hi,
    My reports need a format whereby all repeated key values appear on the report and not be suppressed. I have unchecked the query property and when I run it as a workbook, it works fine and as expected. But when I publish it in the portal or run the query through the web browser, it hides repeated key values. I read the forum and found out about the Web item value change in the Web table. I have informed my portal guy to look into that table and make the change if it makes sense to him. Here as a process, we cannot use WAD and change the look and feel of the report.Everything follows a standard portal look and the portal guy uses the technical name of the query to publish it.
    Is what I want to do possible? If yes, am I missing something here that I can try out in the meanwhile?
    Thanks in advance,
    Kanchana

    You can add the following to the URL:
    &ITEM=Table_webitem_name&SUPPRESS_REPETITION_TEXTS="
    Thanks,
    Jeff

  • Repeat key Values in Webtemplate output

    Hello friends,
    I have a requirement wherein, when I execute the webtemplate, I need to have the key values repeated in the output. I am using a customized template for my reports and I dont want to change this base template. I am using 3.5 webtemplates.
    Please let me know how this can be achieved.
    <removed>
    Thanks
    mvd

    Hi ,
    To not suppress repeated texts, two things are need.
    1) In your web template, add the following line to the Template Properties object tag (the tag at the very top of the web template in HTML mode):
             <param name="SUPPRESS_REPETITION_TEXTS" value=""/>
    2) In your query, in Properties and on the Display tab, uncheck "Hide Repeated Key Values".
    Hope this will help.
    Thanks
    Mukesh

  • Error -Suppress repeated key values

    Hi All,
      After executing query in bex , I am doing filter on Fiscal year .I want to show repeated key values.
    When I go to query properties-display options -Supress Repeated key values is checked.
    I unchecked it and pressed Ok button , It says program error in class SAPMSSY1 method.system error in program CL_RSR_REQUEST and form CHANM_SETTINGS_SET.
    Please suggest .
    Thanks in advance.
    Regards
    Nilesh

    Hi,
    Did you manage to get anywhere with this we have the same issue when trying to suppress zeros on a workbook, interestingly (or not ) The error doesn't occur if I run the query the workbook is based on?
    Thanks in Advance for any help
    Peter

  • Suppress Repeated Key Values in EP

    Hi Experts,
    In BEx, i am able to "Suppress Repeated Key Values" via Query Properties > Display Options.
    However, when i execute the same report in EP, and in the context menu (right click) of the query, choose Enhanced Menu > Query Property, there is no option for "Suppress Repeated Key Values". Why is this so? Is there a way for such?
    My client is requiring it, but their access is limited to EP.
    Kindly, provide assistance.
    Thank you very much.
    julius

    Hi Julius
    In the WAD, if you use the properties pane web item and set data binding to the analysis web item, when you run the report on the portal you should see the settings of the analysis (table), under Data Specific setting you can toggle the "Display Repeated Texts" option, this functionality is also available in the setting link in the 0ANALYSIS_PATTERN default web template.
    Hope this helps
    Josh

  • Allow Repeated Key values in WEB

    Does anyone know how to turn on Repeating key values in the WEB.   This functionality works from the Properties in BEX, but does not appear to be available via the WEB.

    It is a property of the web item TABLE 'SUPPRESS_REPETITION_TEXTS', by default the property is checked you can uncheck it using the properties window in WAD.  See attached documentation.
    http://help.sap.com/saphelp_nw04/helpdata/en/76/489d39d342de00e10000000a11402f/content.htm

Maybe you are looking for