RFE: Column filtering should allow wild card and list.

Request for enhancement:-
if user enter value1, value2, value3 in filter please convert it SQL expression as
field_name like 'value1' or field_name like 'value2' or field_name like 'value3'
also allow a way in GUI to select multiple item in the filter.
May be by pressing ctrl key to select multiple items.
PS
Recently (30EA4) I noticed you can enter expression in Column filtering box,
and trick it to do this by entering
1.
='' or field_name in('value1', 'value2', 'value3')
2.
like 'Value1%' or field_name like 'Value2%'

As said in the forum announcement, requests should go to the SQL Developer Exchange (so other users can vote and add weight for possible future implementation).
But be clear what area you mean by Column filtering.
Regards,
K.

Similar Messages

  • Wild card and blank search for INBOX SEARCH

    Hi All,
    we are working on SAP CRM 2007. we have an requirement where we want to implement "Wild card and blank search for INBOX SEARCH page". please provide me some pointers to proceed. TIA
    rgds,
    @run

    Hi Ajith,
    István is correct, wild card '*' is readily available for any Item name, BP name or other searchable fields.
    Thanks,
    Gordon

  • Regular expressions or "wild cards" and Mail rules

    I'm working on building several rules to deal with various emails types i get during the average day at work. some of them are automatically generated by our servers, others are from customers etc. Some of the messages generated by our servers have a blank subject line. Mail won't let me build a rule with a blank subject line (or anything blank for that matter)...is there a way around this?
    Also, does mail allow for use of regular expressions? I really don't know anything about regular expressions, but was hoping to learn enough to accomplish some more complex rules if it's possible. If not, i won't bother trying to tackle such an obscure language
    Thanks in advance!

    No, there is no provision for this in Mail's rules.
    However, Mail's Junk Filter is based on a much more sophisticated method (Latent Semantic Analysis) that typically is more effective at detecting this sort of thing, in part because methods based on Regular Expressions usually have an unacceptably high false positive rate if they are made general enough to catch all the possible misspellings.

  • Wild card searching in sql squery (pl/sql function body returning......)

    Hi,
    I've a report based on a sql query (pl/sql function body returnin a sql query).
    One of the statements is
    select .. from ...
    where name_of_person = :P17_NAAM
    I like to built a wild card possibility (with like '%l%m%') to show all persons with in their name an l, and an m (after the l)
    how to modify this statement?
    any reaction will be appreciated.
    Leo

    Leo,
    If I understand you correctly, you want to let the user type the value without wild cards, and than to add them programmatically. If that's the case, here is what you can do:
    1. Create a new item, say P17_HIDDEN_NAAM, that will contain the actual search criteria
    2. Modify your pl/sql to:
    begin
      :p17_hidden_naam := null;
      for l_i in 1..length(:P17_NAAM)
      loop
        :p17_hidden_naam := :p17_hidden_naam || '%' || substr(:P17_NAAM, l_i, 1);
      end loop;
      :p17_hidden_naam := :p17_hidden_naam || '%';
      return
        'select ..
           from ...
          where name_of_person like :p17_hidden_naam';
    end;By the way, I think that it's much better to train your users to use wild cards than to do it in the program.
    Sima

  • Wild card prompt

    Hi ,
    Can u give the difference between wild card and multi select prompts.
    THANKS!

    user,
    Multi select prompt is vice versa of drop down functionality i.e. In multi select prompt you are provided with a capability to select multiple values.
    I did not hear of wild card prompt in OBEE. But what I assume is you can search using wild card characters within Multi select prompt.
    Open the multi select prompt, within the pop-up window you have like, begins with, etc. thus based on your need use _(underscore) to search.
    J
    -bifacts
    http://www.obinotes.com

  • Using a column twice in a dashboard prompt -- multi-select and wild-carding

    My client is using OBIEE 10.1.3.2; they cannot upgrade at this time. However, they want to be able to enter both a list of values and a wild-card search for additional values at the same time for a single column in a dashboard prompt.
    Since they cannot upgrade, they do not have the wild-card search feature of the enhanced multi-select prompt feature of 10.1.3.3 and later releases.
    Has anyone found another method to do this, perhaps by using a column twice in a dashboard prompt or in separate dashboard prompts on the same dashboard apge, in order to OR the results of a multi-select and an edit box (with wild-card pattern-match entry)? I suspect that will not work -- that the results sets of one prompt for a column will override any other prompt result sets for the same column.
    Has anyone found another way to do this, prior to release 10.1.3.3?

    Yes, it is possible.
    This is how to do it:
    In your report you need to add two filters on the same column and combine them with OR.
    First filter: is prompted.
    Second filter: is like presentation_variable
    Then protect this filter!* This will make that your prompt will be filtered on the pres. variable and that it won't be overwritten by another prompt.
    Now create your dashboard prompt:
    First add your column with an edit box and attach the presentation variable to it.
    Then edit the formula of the column, so it will not reference to the column anymore. (Which isn't needed, since the value will be set to the pres. variable.)
    Then add the same column with a multi-select.
    Then test it and check your results.
    Regards,
    Stijn

  • Wild Card Postal Codes in Transportation Zones and Postal Code Range in TCM

    Hello Experts,
    I have 2 queries on Postal Codes usability in SAP TM:
    1. Postal Code Transportation Zones:
    Business Scenario: Some countries have non-numeric Postal Codes and you can not maintain From and To Postal Code range. System supports Postal Code to be entered as Wild Card (XY1*) in Transportation Zone but does not respect them during charge calculation.
    2. Postal Code Range in Rate Table:
    There are standard Calculation Bases for Source/Destination Postal Code Range but these do not allow maintaining values like Source Postal Code Range (90100-90199) to Destination Postal Code Range (63100-63199). I am unable to understand the use of these 2 calculation bases since they do not accept range.
    Kindly suggest.
    Thanks and Best Regards,
    Vikas Chhabra

    I start with the first question: Well, well, well. Probably one of the most underestimated topics in the transportation network. A bit of a background: Postal codes are alphanumeric meaning they allow numbers and characters. Of course for some countries only numbers are required and those are pretty easy to handle. Nevertheless, SAP produces global software and there are countries having postal codes with unfixed length, character first, in the middle, at the end. This makes ranges ugly, tough, sometimes impossible.
    The range definition works alphanumeric, which is a position to position comparison based on single chars. You can check the inclusion results in excel or with any database. For the zone definition this can mean that you are forced to enter postal codes and no ranges. Of course this blows up the maintenance effort in the beginning, but ensures the correctness.
    I was surprised by your comment that the zone definition allows '*' because this would make this whole thing even more complicated and error prone. I tested it and it does not work, at least for Germany. I think in the address definition per country you can define valid formats for postal codes and there '*' is not valid for Germany. The transportation zone location inclusion will not work with pattern!
    In case you have manages to maintain this: I would advise to take the effort and enter at least valid ranges.

  • List metadata navigation and columns filters not working.

    Hi
    I'm having an issue with SP 2013 whereby if I apply a filter through metadata navigation subsequent columns filters don't get applied.
    Here I've applied a filter through the navigation and it applies the filter successfully to the documents in the library
    If I now apply a column filter by content type and select the value Promotion Calendar, I get the following
    It appears the filter is selected and I can indeed see the filter applied via the dropdown but it doesn't apply the filter to the list view. I've confirmed this also on another environment using different columns for the metadata navigation.
    The environments are patched to Dec 2013 CU.
    Thanks

    Hi
    Matt Williams3 ,
    The scenario is be default that Managed Metadata navigation tree in document libraries does not allow further filtering on other columns.
    For a workaround, you can use Key Filters instead.
    For more information, you can refer to the blogs:
    Set up metadata navigation for a list or library
    How to Use Metadata Navigation and Filtering in
    SharePoint 2013
    Reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/78881468-308d-4305-8454-c67fceb05fea/managed-metadata-navigation-tree-in-document-libraries-does-not-allow-further-filtering-on-other?forum=sharepointsearch
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • I create my apple id from my boyfriend macbook and its says that I have to review my itunes information , when I get to the credit card number info etc. Its keep asking me for that I dont have any credit card and I dont want to put any , what should I do?

    I create my apple id from my boyfriend macbook and its says that I have to review my itunes information , when I get to the credit card number info etc. Its keep asking me for that I dont have any credit card and I dont want to put any , what should I do?

    You cannot use that ID without a credit card. You did not create your account correctly. There is very specific way in which you must create your account if you do not want to use a credit card. If you don't have a credit card, you will have to start all over again.
    1. You will have to sign out of that ID before you can create a new one. Settings>iTunes & App Store>Apple ID>Sign out.
    2. You cannot use the email address that you used for the first ID that you created. You will need to use another email address now
    3. You have to download a free app in order to start the new Apple ID process.
    Read this before proceeding.
    http://support.apple.com/kb/HT2534

  • TS2972 I assume my Apple TV should allow me to view all events,albums and slideshows but It only allows four events to display on my TV. I'm using a Optus mini Wi Fi for my home network. Could this be the reason for limited access via my iMac computer? Ch

    I assume my Apple TV should allow me to view all events, albums and slideshows in my iPhotos app but it only allows four events and four albums to display on my television. I'm using a Optus mini Wi Fi for my home network. Could this be the reason for limited access via my iMac computer?
    Chris

    No, I have not chosen photos to share as I assumed that the Apple TV would access all photos and music that are stored on my iMac. 
    Thanks for your advice. I will check it out.
    Chris

  • Is there an app that allows you to take a picture of ei: safeway card and UPC code instead of finding these cards everytime out of a wallet

    is there an app that allows a person to take a picture of ei: a safeway card and the UPC to just pull out the phone instead of looking for cards out of wallet o purse?

    I've seen a number of them that appear to do what you want. Search the app store.

  • Apps, Gift Cards and Canada - is purchasing now allowed?

    I have heard that gift cards can now be used to buy apps in Canada from the App Store. I can't find the paragraph in the terms of service that disallows it.
    Has anybody tried it?

    Apps, Gift Cards and Canada - is purchasing now allowed?
    Yes.
    (52485)

  • Wild card search and multiselection in dashboard prompt????

    Hi all:
    Actually, I want to make dashboard prompt that filters the customer code, user can select more than one code at a time. But there is one more requiremnet that is, If user wants to find customer code in report than it just write the code or part of code ("like wild card search"). I want these two works in one dashboard prompt. If there any possiblity to do like this. Please help me to create this type of dashboard prompt. Thanks
    Ali

    Hi Ajith,
    István is correct, wild card '*' is readily available for any Item name, BP name or other searchable fields.
    Thanks,
    Gordon

  • RFC as webservice and wild cards

    Hi experts,
    We have a custom RFC that fetches employee data based on import parameters like PERNR,FIRSTNAME,LASTNAME etc.This RFC is exposed as a WS by default(we are on ECC6.0) and is consumed by a non-SAP application.
    The problem is when the calling application tries to do a wild card search in any of the field (say,FIRSTNAME),there is an error with the message like give below:
    There is an error in XML document (1, 17584987).
    'ўј', hexadecimal value 0x06, is an invalid character. Line 1, position 17584987
    Please note that the RFC works fine in all scenarios from SE37.
    Even the WS works fine for searches like 'A'.But the problem occurs only when one/any of the parameters is ''.
    My questions is:Is there any restriction on using the wild card as a parameter to a WS interface?If yes,how to have a workaround on this?
    Thanks in advance,
    Prasanna

    Hi
    Can we wrap a rfc as web service ?
    Yes.
    <i>To use the SAP Web AS 6.40 you need to build a wrapper in the 6.40 system. This is a remote function call (RFC) enabled function module with the same interface or a similar interface that internally calls the required RFC-enabled function module in the old 4.6x system via RFC. The wrapper then can be exposed to the outside world as a Web service. Another option is to use the Integration Broker capabilities for calling Web services in an older system.</i>
    How XI will play a role here ?
    XI will pass the input to the external java application and get back the result to the webservice
    regards
    krishna

  • HT1918 i have just made my apple id.i have made this for itunes.after making my account i have problen with the review payment information as i do not use any credit cards and there is no option like NONE in review payment information. what should i do no

    i have just made my apple id. i have made this for itunes. after making my account i have problem with the review payment information as i do not use any credit cards and there is no option like NONE in review payment information. what should i do now? to proceed further? plz help me!

    How did you create the account ? If you followed the instructions on this page when creating it then you should have got the 'none' option : http://support.apple.com/kb/HT2534
    e.g. on a computer's iTunes, if currently signed into an account then you logged out of it, and you then found a free app in the store and clicked on its free 'price' :
    And then clicked on 'create Apple id' on the popup :
    When I tried that process to create an account a few days ago I got the 'none' option on the payment details screen.
    If you didn't use that process then you will need to create a new account using it (the instructions won't work with an existing account).

Maybe you are looking for

  • Synchronizing with Outlook Calendar and Contacts

    Hello, For the past few days I've been having problems synchronizing my BB Torch 9810 with my Outlook 2010 calendar and contacts. This is only recent, and it might be the result of a problem I had with Office, and the fact that the Deskitop Manager w

  • My phone does not know who is calling even thought that number is in contact list

    Hi everyone, I recently synced contact. The phone number style is now XXX-YYYZZZZ. What happened is when someone is calling me, the phone did not recognize who that is. Anyone know how to fix this? I do remember the phone style in my contact used to

  • Lock Box Configuration

    Can anybody told me Configuration for Lockbox in SAP FI module.

  • Need help with Premier Elements 11 and Geforce 9600 GT Driver

    I have Win7.  Everything was working until my driver got updated by MicrosoftUpdates.  I rolled back the driver but still get the error/warning that the driver is not optimal.  Cannot see a preview of my video once it's uploaded.    I loaded an older

  • 1920x1080 Fiasco in Adobe Premiere Elements 9

    Hi all, I have been scouring the forums for an answer and so far, no luck. My problem is this. I have a Full HD camera and here are the properties for the video I am trying to render: Video Length 13:27 Frame Width 1920 Frame Height 1080 Data Rate 17