I am able to search only by text and not by Key in filter.

We have a variable x which has bex properties in the infoobject level to
1.display:   Key and Text
2.text type: long text
3.Query def filter value selection: Only values in infoprovider
4.Query Exe filter value selection: Only posted values for navigation.
in the Query designer to the object we have the same properties for 1 and 2 as above.
          On execueting the report in web,  In the variable screen for x <b>we can search for both Key and text</b>. (we have two radio buttons for Key and text),
           Whereas in the <b>result area for the filter</b> for x I am able to search <b>only by text and not by Key</b>. I want to search by both Key and text in filter screen. 
Can u suggest suitable solution for this ASAP.

I have been working on a similar problem and have found that it depends on what kind of InfoProvider you are using.
If you are using an InfoCube, the setting that seems to control this is on the maintenance screen (Admin Workbench -> {InfoProvider to be edited} -> Change -> Extras -> Structur-Specific InfoObject Properties. If you want the key and text to display on the variables screen (which you already have), make sure the 'Display' is set to "Key and Text". If you want key and text to display on the filter screen, make sure the 'F4 Query' is set to "Values in Master Data Table". (You may also have to set the characteristic to display key and text in the query, but it sounds like you already have done this.)
For an ODS, the settings are the same, but the path to get there is different. Go to Admin Workbench -> {ODS to be edited} -> Change -> {InfoObject to be edited} -> Right-click -> ODS-object Specific Properties. Same settings as above after this.
For a MultiProvider, I found that the settings on the InfoObject itself seemed to control the display on the Web, so I ended up setting: Display = "Key and Text"; Query Def Filter Value Selection = "Values in Master Data Table"; and Query Exe Filter Value Selection = "Values in Master Data Table". That may be a bit of overkill, but I wanted to be sure to get both key and text in all situations.
I also found that the settings for navigational attributes (e.g., 0PLANT__0REGION) for any kind of InfoProvider must be set at the InfoObject level (e.g., 0REGION), as above.
Even with all of this, I still have a couple of InfoObjects left that I can't get to display both key and text for some unknown reason.
Hope this helps...
Bob

Similar Messages

  • When installing iLife, can I only upgrade iPHoto and not iMovie or iDVD?

    When I install iLife, Is it possible to only upgrade iPhoto and not iMovie and iDVD? I've heard the new versions of iMovie and iDVD are not as robust. If I do this, does iPhoto '08 still integrate with the last version of iDVD?

    If you do a custom install you can select what gets installed
    I believe that You also can move the old versions so the new versions get installed and you still have the old versions - I understand that Old Toad has numerous versions of iLife programs on his system - search the iPhoto forum for his posts to see what he has to say about that
    And you can download iMovie 6 from the Apple download site - a free install for iLife '08 owners
    So you can have the old and the new
    LN

  • I have updated my ipad yestarday sicne then i am not able to open any application on my ipad2. some of the application able to open in the page and not able to open all the applications in the second page. Does any one got this type of issue? any sugg?

    i have updated my ipad yestarday sicne then i am not able to open any application on my ipad2. some of the application able to open in the page and not able to open all the applications in the second page. Does any one got this type of issue? any suggestions?

    This problem has been reported a few times. The solution is to install any new App say a free one. This seems to fix whatever has gone wrong.

  • I need to reset my security questions, but can I  message  support  by text and not call or if you can tell me how to reset my questions here that will be great and I don't have a rescue email.

    I need to reset my security questions, but can I  message  support  by text and not call or if you can tell me how to reset my questions here that will be great and I don't have a rescue email.

    If you've forgotten the answers, you can't do that yourself. Click here, tell the iTunes Store staff that you can't call, and see what they say.
    (109704)

  • How to create a plugin to stamp texts and not an image into a pdf document

    How to create plugin to stamp texts and not an image.. i just want it to work like the stamper plugin found in sdk sample but here i need text to be stamped instead of an image.. Is it possible? kindly give me some ideas?how to go about it.. can this be done by modfying the stamper sample code?
    Thank you

    This is possible, but it is a serious project, not something to be cut around from sample code. You will need to study the "graphics" and "text" chapters of the PDF specification in some detail to understand the PDF graphics model, including colour spaces, graphics state, and transformation matrixes; if working with annotations understand them and the requirement for appearance stream. There are various ways to add content to a PDF, but the PDFEdit API is probably the most accessible.

  • Airport utility only shows disc and not airplay

    airport utility only shows disc and not airplay

    Actually......IF......one is using an older 5.x version of AirPort Utility......AND.....an AirPort Express, a Music icon is displayed at the top of the screen. If you click the Music icon, there are settings to enable AirPlay and establish a password for the service.
    The newer Mac 6.x and iPad and iPhone versions of AirPort Utility automatically enable AirPlay, but display no settings for this.
    Since ralphington is using Mavericks (10.9.4), there are no controls for AirPlay displayed in his version of AirPort Utility.

  • Using the text and not the value of a filed

    Hi there,
    I'm programming a pdf form using life cycle, I'm using the following script in a "SEND TO" button in order to email an XML file with the data extracted from the form:
    var emailAddress = F.P1.Line.rawValue;
    var veicle = F.P1.Vehicle.rawValue;
    var shipper = F.P1.Shipper.rawValue;
    var date = F.P1.Date.rawValue;
    event.target.submitForm({cURL:"mailto:"+emailAddress+"?subject=Booking request from "+shipper+" date:"+date+" &body=Dear Sirs,Please find attached the completed PDF booking form for the following "+veicle+".",cSubmitAs:"XML",cCharset:"utf-8"});
    The problem is that I would like to use in a variable the text and not the value of the F.P1.Line.raw field.
    Thanks in advance

    Hi,
    This is not the appropriate forum to post this type of question. Please post all designer related queries in LiveCYcle Designer Forum to receive better response.
    From you query I understand you have a dropdown box with name as "Line". And you want to the "text" part of the selected item and not the "value" part. If it is so then do the following -
    1. Write the below code in onCHange event of your dropdown box.
    var ddValue = this.boundItem(xfa.event.newText);
    var nodeList = this.resolveNode("#items").nodes;
    var ddText = null;
    for (var i = 0; i < nodeList.length; i++)
    if (this.boundItem(nodeList.item(i).value) == ddValue)
    ddText = nodeList.item(i).value;
    break;
    global.selectedtxt = ddText;
    In the above code I am basically getting the "text" part of the item selected and then I am storing it in a global variable.
    2.
    Write the below code on click event of your button -
    var emailAddress = global.selectedtxt;
    Hope this helps.
    Thanks,
    Shivajiv.

  • What do I convert to if I only have OpenOffice and not Word?

    What do I convert my pdf files to if I only have OpenOffice and not Word?

    Hi sulezyf,
    OpenOffice and Word documents have the same extension i.e .doc
    You can convert the pdf to .doc format.

  • How do I send a group text and not have everyone else get the responses

    How do I send a group text and not have everyone else get the responses?   Thx

    Whether or not everyone gets the response depends solely on the person responding. i.e. you send a group text and i am one of the reciepients. From here i have two options, reply to the group text (everyone gets my reply) or i could text just you on the side (by opeining a new window in messages with just you as the reciepient) and replying to just you. Theres nothing you can do, its up to the person replying whether or not they reply to the entire group or just you seperately.

  • Hi guys i can really use some help in my storage it says other takes up 8.4 gigabytes and i deleted all old texts and notes help please !

    THANK YOU

    "Other" is not old text and notes. Some "Other" is there for a purpose, but if it gets too big, it probably caused by corrupt data. Doing a restore of your phone is the normal route. Make sure (as I am sure you do regularly anyway)  you backup everything before doing the restore.

  • My time capsule connotes only with ethernet and not wireless why?

    my time capsule connotes only with ethernet and not wireless why?

    Firstly, try a factory reset. This can often iron out problems like this.
    Also, what generation is your TC? What version of AirPort Utility are you using?

  • Connect only in Bn and not in Gn

    Hello
    I have a Controller 5508, CAP 3501E
    I have a problem, all client who connect in 802.11n connect only in Bn and not in Gn.
    When I diseable the n, the same client connect in 802.11g.
    Could you help me that the client can connect in Gn
    Thank you
    christophe

    Hello
    I test this
    Go to Wireless > 802.11 b/g > Network.
    Disable all data rates 12 Mbps and below.  Make 18 as Supported and 24 as Mandatory.
    but not good result
    the controller version is

  • Yahoo Pop only retrieve inbox and not spam folder

    Hi! As per the title, how do i get mail to retrieve only the inbox and not the spam folder with pop?
    I assume it is a silly option i'm missing... thanks in advance!

    Sorry, I misread you post. There is a feature with ATT mail that allows that. Deselete it in Settings, more options.
    Change it to don't POP spam.

  • HT4059 Why ibooks on iphone5 share button only allows print and not, copy - mail or dropbox?

    Why ibooks on iphone5 share button only allows print and not, copy - mail or dropbox?

    Why ibooks on iphone5 share button only allows print and not, copy - mail or dropbox?

  • WHY FREE ITUNES PRODUCTS ARE AVAILABLE ONLY FOR USA AND NOT FOR OTHER USERS OUTSIDE USA

    I am so impressed wit the welcome page saying "Join the conversation. Share tips and solutions with fellow Apple product users from all around the world."
    Apple mentioned for their products users around the world but many of their free itunes products are available only for USA and not for the users from the other side of the globe?
    Is this Apple a fair and customer oriented company or full of bias and Only money oriented company.
    If apple could not make thier other FREE stuffs available outside US territory then better for thsi company to just sell their products in USA. its just so disgusting...  If we need a certain apps (FREE APPS) available only for US based users.
    If you think US users and other country users are paying the same prices for their iPad 3G/4G WIFI 64GB and iPhone 3G/4G 64 GB like hat I did having the 2 gadgets altogether but my investment ends to disgusting as the apple company cound not treat people equal then.....  I want to return all this **** stuffs

    iTunes for Different Countries
    iTunes Store: Which types of items can I buy in my country?

Maybe you are looking for

  • Exported slideshow from iPhoto is blurry - HELP!!!

    I've made a slideshow that I would like to share with my family but no matter what format I export it to the video is always blurry on their iphone or ipads or even computers.  The slideshow looks great on my MAC and I've tried to change the settings

  • Illustrator 10 on WinVista O/S

    Illustrator 10 appreared to install successfully, yet only the Adobe splash screen appeared for a second at start up. Then nothing. I have tried the repair route, but no change in the results.

  • Problem with java web start

    I don't know why if I put in my url of my remote application for example : "http://localhost:8080/manipulationAS400/manipulationAS400Launcher.html" I have my application but if I replace localhost in my url by the name of my PC, I don't know to have

  • Cannot Download Yosemite - error message

    I tether my iPhone to my iMac for internet access and downloads of software, etc.  While trying to download Yosemite several days ago, the download stopped "froze," with "calculating" appearing for how much time remained in the download.  It just sto

  • Getting loged users from one application to another

    Hello, I'm writting two applications with spring hibernate and jsf. The first application must get and show alls users loggued on the second application. How can I do this? thanks