Display Key Values only on filter screen

Hello all,
I have one specific requirement. When user runes any query (based on an infoset) , data is displayed. After which if user presses right clicks on data filed -> Select filter value. Then one  Filter screen is displayed. Values from this filter screen are displayed as text values.
I want it to display as key value. This particular infoobject is in coumpounding.
I have already tried changing Bex properties at infoobject level and RSD1, it does not have any effect.
can anyone suggest any option.
Edited by: priyanka s on Sep 15, 2008 10:41 AM

Hi Priyanka,
In BI 7.0, these options are available in the definition of InfoProvider itself.
For DSO:
Right Click on Key/Data Fields --> Provider Specific Properties of the InfoObject --> Display (Column)
For Cube:
Right click on Dimensions --> Provider Specific Properties of the InfoObject --> Display (Column)
Set the required properties here and you will get the required results.
Hope this time you get it right
Regards,
Yogesh

Similar Messages

  • How to display field value only once in REUSE_ALV_GRID_DISPLAY

    hi experts,
                   i am using REUSE_ALV_GRID_DISPLAY, for alv outpur display.but i want one of the field in output ,not to display the value which is of same, it have to be displayed only once, I mean i have a number which contains multiple line items corresponding, here i want to display the field value only once when it is repeating , for the same header number, how can i achieve it

    Hi,
    check the sample code,
    REPORT  Z_ALV.
    Database table declaration
    TABLES:
      sflight.
    Typepool declaration
    TYPE-POOLS:
      slis.
    Selection screen elements
    SELECTION-SCREEN BEGIN OF BLOCK blk_1 WITH FRAME TITLE text-000.
    SELECT-OPTIONS:
      s_carrid FOR sflight-carrid.
    SELECTION-SCREEN END OF BLOCK blk_1.
    Field string to hold sflight data
    DATA:
      BEGIN OF fs_sflight ,
        carrid   TYPE sflight-carrid,      " Carrier Id
        connid   TYPE sflight-connid,      " Connection No
        fldate   TYPE sflight-fldate,      " Flight date
        seatsmax TYPE sflight-seatsmax,    " Maximum seats
        seatsocc TYPE sflight-seatsocc,    " Occupied seats
      END OF fs_sflight.
    Internal table to hold sflight data
    DATA:
      t_sflight LIKE
       STANDARD TABLE
             OF fs_sflight .
    Work variables
    DATA:
      t_fieldcat TYPE  slis_t_fieldcat_alv,
      fs_fieldcat LIKE
             LINE OF t_fieldcat.
    *START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM get_data_sflight.            " Getting data for display
      PERFORM create_field_cat.            " Create field catalog
      PERFORM alv_display.
    *&      Form  create_field_cat
          Subroutine to create field catalog
          There is no interface paramete
    FORM create_field_cat .
      PERFORM fill_fieldcat USING   'Carrier Id'    'CARRID'   '2'.
      PERFORM fill_fieldcat USING   'Connection No' 'CONNID'   '1'.
      PERFORM fill_fieldcat USING   'Flight Date'   'FLDATE'   '3'.
      PERFORM fill_fieldcat USING   'Maxm.Seats'    'SEATSMAX' '4'.
      PERFORM fill_fieldcat USING   'Seats Occ'     'SEATSOCC' '5'.
    ENDFORM.                                    "create_field_cat
    *&      Form  fill_fieldcat
          Subroutine to fill data to field column
         -->p_seltext      Column label
         -->p_fieldname    Fieldname of database table
         -->p_col_pos      Column position
    FORM fill_fieldcat  USING
                        p_seltext    LIKE fs_fieldcat-seltext_m
                        p_fieldname  LIKE fs_fieldcat-fieldname
                        p_col_pos    LIKE fs_fieldcat-col_pos.
      fs_fieldcat-seltext_m  = p_seltext.
      fs_fieldcat-fieldname  = p_fieldname.
      fs_fieldcat-col_pos    = p_col_pos.
      APPEND fs_fieldcat TO t_fieldcat.
      CLEAR fs_fieldcat.
    ENDFORM.                    " fill_fieldcat
    *&      Form  get_data_sflight
          Subroutine to fetch data from database table
          There is no interface parameter
    FORM get_data_sflight .
      SELECT carrid
             connid
             fldate
             seatsmax
             seatsocc
        FROM sflight
        INTO TABLE t_sflight
       WHERE carrid IN s_carrid.
    ENDFORM.                    " get_data_sflight
    *&      Form  alv_display
          Subroutine for ALV display
          There is no interface parameter
    FORM alv_display .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          it_fieldcat   = t_fieldcat
        TABLES
          t_outtab      = t_sflight
        EXCEPTIONS
          program_error = 1
          OTHERS        = 2.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " alv_display
    End of code

  • How to Display key/text in default selection screen?

    HI Gururs,
    I want to display key/text in variable default selection screen in BI Analyzer in Quality.
    please give me any suggestions to resolve this.
    Thanks
    vadlamudi

    hi,
    What i have done is in the cube level, in the dimensions i have made specific properties and set to key/text in development, so its working fine in development of the analyzer, but still its showing text only in quality analyzer.
    please give me the solutions if you know any.
    regards
    vadlamudi

  • How to remove Dublicate values in Variable Filter screen?

    Hi All,
    I have Master data Object, ABC, XYZ and XYZ Description, and below i have given the data for the same
    Ex  ABC    XYZ      Description
           A        1           Abc
           A        2           Bbc
           A        3           Ccd
           B       1            Abc
           B       2            Bbc
           B       3            Ccd
           C       1            Abc
           C       2            Bbc
           C       3            Ccd
    While executing the Query, we want to do Drill Down on XYZ, In Variable Filter screen we are able to see the Dublicate values, which is making confusion to endusers as which is realed to ABC i.e A or B or C?
    Regards,
    Kiran

    Hi Surendra,
    Say we have executed query using WAD, in Query when we do drill down on B, we are getting all dulicate values like Abc, Abc.
    So client is not able to find which is what.?
    Regards,
    Kiran

  • Display Distinct values in LightSwitch browse screen

    i have one browse screen which is fetching value from one entity(Attached to SQL datasource), the entity will look like the below snapshot.
    ID
    EMP ID
    Emp Name
    Age
    Role
    1
    266
    Srikanth
    26
    Developer
    2
    266
    Srikanth
    26
    Architect
    3
    122
    Raj
    29
    Tester
    4
    122
    Raj
    29
    Manager
    So in the browse screen its coming with all row values (1,2,3 and 4) even though i removed the Role field from the screen. I want to display only the distinct Emp ID, Name, Age in the browse screen of this entity. Please
    give me some suggestion.

    i suggest to Create new View Return Only Distinct record from Original Table And Update your DataSource with this view And Create Your Browse Screen Depends on This View
    SQL Script
    Create View VwEmployeeDistenct
     as 
    select Distinct  [EMP ID], [Emp Name],
    [Age]  from OrginalEmplyeeTable 
    go

  • Display single value with dimension filter selection

    Hello,
    I use Design Studio 1.3.
    I want to display the correct single value after I choose a "Calyear" form dimension filter.
    At the moment I can use the sum of all "Calyears"only.
    Thanks for our help....

    I have create this Datasource:
    In Script Editor I fill the value field with this Code:
    DETAILS_VALUE_AE.setText(DS_3_AE_DETAIL.getData("00O2TF25Z6L0MSI7DYKIXACY3", {}).formattedValue + " EUR");
    00O2TF25Z6L0MSI7DYKIXACY3 = Keyfigure "Aufragseingang"
    Without filter the value is correct.
    But when I filter (with dimension filter) the value doesn't works correct.
    I think my code in script editor is not correct. Or must I use variables?

  • How to display array values in jsp of screen flows

    Hi,
    can u please help me .
    I am having one array variable i have stored all the values but i have to display that in JSP page .how to display
    Edited by: user12171025 on Nov 4, 2009 11:11 PM

    Hi,
    I think that its necessaries to use AJaX.
    I am implemeting something like that.
    I have a input text that works like a filter and depends on what my user types in input text I populate my table with some information.
    In order to do that, I put in my JSP a div with an Id and I used ajax, like that:
    function ajaxFunction()
              var xmlhttp;
              if (window.XMLHttpRequest)
              xmlhttp=new XMLHttpRequest();
              else if (window.ActiveXObject)
              // code for IE6, IE5
              xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
              else
              alert("Your browser does not support XMLHTTP!");
              xmlhttp.onreadystatechange=function()
                                                      if( xmlhttp.readyState==4 )
                                                           document.getElementById("tabelaResponsaveis").innerHTML = xmlhttp.responseText;
         var resp = "<f:invokeUrl var='solicitacao' methodName='getResponsaveis'/>";
         xmlhttp.open("POST",resp,true);
         xmlhttp.send(null);
    getResponsaveis is a method inside my BPM that returns a HTML code (the table HTML code with all the information that I need to show.
    I Hope to help
    Thanks Marcos

  • Convert Date to Text, Display Unique Values Only

    Hi. I have a table that receives information on a weekly basis. The record includes a number and a date. (For example, "ID, 150, 01/15/2005") I am using the following to convert the whole date into the format I want it to be displayed in:
    select "ID",
    TO_CHAR (DATEFIELD, 'MON-YY')
    "NUMBERFIELD"
    from "TABLENAME"
    where "DATEFIELD" BETWEEN '01-JAN-05' and SYSDATE
    The query/conversion works fine, however I want to display only one total for any given month. That is, (now) if there are two entries in the month of January, the output will list "JAN-05" twice and display the unique value of each record. Instead, I would like to display all January records as a single "JAN-05" output with a cooresponding total. I'm thinking "unique" or a "group by" function, but so far I have been unsuccessful. Any suggestions? Thanks!

    column XXX noprint
    select
           TO_CHAR (DATEFIELD, 'MON-YY') MONTH
          ,SUM(NUMBERFIELD) sum_of_numbers
          ,TO_CHAR (DATEFIELD,'YYYYMM') XXX
      from TABLENAME
    where DATEFIELD >= trunc(to_date('01.01.2005','dd.mm.yyyy'))
       and DATEFIELD < trunc(sysdate+1)
    group by TO_CHAR (DATEFIELD, 'MON-YY')
             ,TO_CHAR (DATEFIELD,'YYYYMM')
    order by
              TO_CHAR (DATEFIELD,'YYYYMM')

  • Display characterstics value only if user populates respcetive variable

    Hi Friends,
    I have a strange situation wherein I have to show results according to characteristics only if user has populated respecitve var. for ex, i have cal year and cal month in query. If user only populates cal year than cal month should not be dispalyed in output and if user populates cal month then cal year shoudlnt be dispalyed in output.
    any help is welcome,
    thx,
    purvang

    Hi,
    write CMOD code for the two variable in i_step = 2 .
    using flag option which will be set if any of the variable value is entered. SO based on it value other value will be blank.
    Hope it helps,
    Uday.

  • Wants to display variable as key value in Free Char section of report

    Hi All,
    I have a variable based on characteristic. When I execute report, I pass value for that variable. And I get text of that variable value, displayed in Free Characteristic section.
    Instead of text, I want to display key value there.B'coz many times, texts are ambiguous and quite fictional examples.
    I have tried changing 'Display as key' in Business explorer tab of infoobject definition. And in query definition, I already have 'Display as Key'. So I am wondering what else needs to be done for this change.
    I will appreciate if someone can help me on this.
    Thanks,
    Pranali

    Hi Pranali,
        You can display all variables used in Query in workbook from BEx Menu(Tool bar) -->> Layout --> Display Text eliments --> Variables (you can see two entries for each variable) one for key and one for Text.
    Hope it Helps
    Srini

  • Problem displaying registry value

    Hi,
    I believe I have some basic issues with the setwindowtext function. I have a value stored in the registry of 10 characters, type REG_SZ. The regerror parameter for the RegGetValue funtion below is 0, so this function I believe should be okay. But when I
    try to display the value, only the first of the ten registry characters are displayed, and I don't understand why. I wondered therefore if someone could give me a hint about what could be wrong.
    #include "Winreg.h"char outtxt[25];
    #define BUFFER 25
    char registervalue[25];
    DWORD BufferSize = BUFFER;
    LONG WINAPI regerror;
    regerror = RegGetValue(HKEY_LOCAL_MACHINE, L"SOFTWARE\\DhruvaNada\\Settings", L"mrg", RRF_RT_ANY, NULL, (PVOID)&registervalue, &BufferSize);
    sprintf( outtxt, "%s", registervalue);
    SetWindowTextA(Control[13], outtxt);
    Thanks in advance.

    On 17/03/2015 12:56, Vahmat wrote:
    I believe I have some basic issues with the setwindowtext function. I have a value stored in the registry of 10 characters, type REG_SZ. The regerror parameter for the RegGetValue funtion below is 0, so this function I believe should be okay. But when I
    try to display the value, only the first of the ten registry characters are displayed, and I don't understand why. I wondered therefore if someone could give me a hint about what could be wrong.
    #include "Winreg.h"char outtxt[25];
    #define BUFFER 25
    char registervalue[25];
    DWORD BufferSize = BUFFER;
    LONG WINAPI regerror;
    regerror = RegGetValue(HKEY_LOCAL_MACHINE, L"SOFTWARE\\DhruvaNada\\Settings", L"mrg", RRF_RT_ANY, NULL, (PVOID)&registervalue, &BufferSize);
    sprintf( outtxt, "%s", registervalue);
    SetWindowTextA(Control[13], outtxt);
    You are mixing Unicode and ANSI text here, without proper conversions.
    The fact that you called RegGetValue() and specified strings using the L"" prefix, means that you are using a Unicode build (which is fine, and has been the default since VS2005).
    However, you should be consistent with this Unicode mode, and use that also for the other strings in your code. So, you should use wchar_t instead of char, and for example have:
    // Use wchar_t, no "char"
    wchar_t reigsterValue[25];
    Similarly for "outtxt".
    And you should use swprintf() (or better its safe version swprintf_s()) instead of sprintf().
    In addition, you should use just SetWindowText(), which expands to SetWindowTextW() in Unicode builds.
    If, for some reason, you really want to output ANSI/MBCS strings, you should properly
    convert the resulting string read from the registry into an ANSI/MBCS string, either explicitly via the WideCharToMultiByte() API, or using some helper like ATL's CW2A:
    https://msdn.microsoft.com/en-us/library/87zae4a3.aspx
    HTH,
    Giovanni

  • Display the second report as modalform and filter with primary key value of first report when you click on first report column link

    Hi All,
    I have two reports.
    1. order report
    2. order detail report
    when you click on the order report column it display the order detail report as a modal form.
    i was done below steps.
    1. In page header i was written the below code
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
    $('#ModalForm1').dialog(
    autoOpen : false ,
    width :470,
    height: 500,
    resize :false,
    function openForm1()
    $('#ModalForm1').dialog('open');
    function closeForm()
    $('#ModalForm1 input[type="text"]').val('');
    $('#ModalForm1').dialog('close');
    </script>
    2. order report.
    3. order detail report
       select * from order_details where order_id = p_order_id;
    region header
    <div id="ModalForm1" title="Ordered Items" style="display:none">
    <p class="msg"></p>
    footer
    </div>
    4. created the hidden item in order detail report.
    5. in order report column attributes i was given link like below.
    javascript:$s('p_order_id','#order_id#');openForm1();
    when i click on the order report column link it passing the row primary key value to hiddent and open the report as modal form. however it is not filter the report with hidden item. it showing the no data found.
    problem is hidden item value is not submitting. once we submit that value it showing the 2nd report with filter data.
    can any help me to achieve above requirement.
    apex: 4.2
    oracle 11g
    Regards,
    Vijay.

    Vijay,
    Issue 1: Your usage of $s() JavaScript API seems to be wrong. For the first parameter, you need to use the name of the hidden page item and not p_order_id.
    javascript:$s('P1_ORDER_ID','#ORDER_ID#');openForm1();
    Issue 2: Seems like you are not setting the hidden page item's value in session state. Assuming your hidden page item is called P1_ORDER_ID, Under "Region Definition" tab of your "Order Detail Report" under "Source" tab, for page items to submit, enter the name of the hidden page item P1_ORDER_ID.
    Thanks!
    JMcG

  • Display key and text in variable selection screen.

    Hi:
    I have a variable in the Var.selection screen. and I cannot have the text displaying. Only the key is coming.
    - I have checked "Provider-Specific Properties" in RSA1 and is ok. and display attributes in Query Designer as well.
    Infio: The Characteristic is used in the same query as a Free Char. and there is displaying Key+Text correctly...
    any idea in what else to check.?
    Regards.

    Hi,
    Do you mean that the value help of that variable is not showing the Text values in the selection screen.It shows only the values in "Key"
    If this is the case,then invoke the value help of that variable->Click "Settings"->"General Display" tab->Select "Default(Text)" and click OK.The values will be listed in "Text" rather than "Key"
    Rgds,
    Murali

  • Display key in the selection screen and Key & Text in the report

    Hi,
    For the infoobject in the query,
    In the variable selection screen When i want to select any value it should display only key, and in the report i want to display key and text of that infoobject.
    Is it possible?
    Thanks
    Rani

    Hi
    Display As
    Here you determine whether and in what format the individual characteristic values of the characteristic are presented:
    ·        (Standard): The standard display type for characteristic values corresponds to the setting in InfoObject maintenance under Tab Page: Business Explorer.
    ·        No Display: The characteristic display is hidden. This function is useful, for example, with the currency/unit characteristic as the currencies are also shown in the key figures.
    ·        Key and Text: The characteristic values are displayed by their technical key and text.
    ·        Text: The characteristic values are displayed by their text.
    ·        Key: The characteristic values are displayed by their technical key.
    ·        Text and Key: The characteristic values are displayed by their text and technical key.
    In the dropdown box below, you can select the type of text you want to use if you set a display type that contains text. The following options are available:
    ·        Standard: The shortest available text for the characteristic values is used as the text.
    ·        Short text: The short text for the characteristic values is used as the text.
    ·        Long text: The long text for the characteristic values is used as the text.
    ·        Medium text: The medium text for the characteristic values is used as the text.

  • Display Key & Text In Variable Screen

    Hi All,
    I am having one master data Location having Attribute and Text data loaded.
    I am using the same Location as a characteristics in my DSO and then in Query .
    Now, i have create one variable on Location. When i am executing the query , and click on Location Help. It will show only Text values. I want to have Location Key as along with Text in the variable selection screen.
    Please suggest.
    Regards,
    Macwan James.

    Hi James,
    for infoobject Location you can swith to both key and Text at variable screen.
    please do this setting.
    RSA1 -> select DSO  change mode -> go to the infoobject Location right click select  "Provider-specific properties"
    Display " 0 Key and text" select this and activate DSO.
    please check at the selection screen.
    Best Regards.

Maybe you are looking for

  • Cannot send email from Mail through .mac account

    I have recently opened a .mac account and started using the email service. It works fine online however I am having difficulty sending messages through the Mail application in Tiger. Whenever I attempt to send a message, a dialog box appears saying "

  • How can I see when I created a playlist?

    I've been creating mixes via playlists in iTunes for years now, but I never thought of writing down the date of when I created them.  Of course, iTunes is organizing them in alphabetical order, but I really want to get a good idea of when these lists

  • Shared Library issues after update yesterday

    Yesterday, some systems updates came through and I went ahead and said yes. I didn't really look at what they were. Since then I have been trying to use Panrama, Thinking Home software and Graphic Converter. Every time I try to access these programs,

  • Invalid FF Log Report

    Hi All, Recently all GRC projects which are using GRC 10 and GRC 10.1 versions have a common issue called "Invalid FF Log Reports" I browsed through a lot of discussions in SCN and lot of SAP notes as well, but don't have correct information on why t

  • When I use the clone tool keyboard dies

    everytime I use the cloan tool, the keyboard stops working... sometimes the F keys and control and arrow keys work... but thats it. Any help?