Case-sensitive search for equipments

Hello gurus,
when looking for certain equipments using F4 (program RIEQUI20), I can search for all equipments of a certain manufacturer (field HERST).
Unfortunatelly this search is always case-sensitive, i.e when I enter "BOSCH", equipments with manufacturer "Bosch" are not found and vice versa.
Is there any way to change this behaviour?
Thanks in advance
Alicia

Alicia,
  Oops ..Sorry about that. I had misread it. You will not be able to accomplish the same in standard enhancement.You could remove the case sensitive check box on the HERST data element.But that would be considered A modification.That might however do the trick and save all the new contents in CAPS.The search help will then pick everything.(You may have to go into change mode on existing records and re save them for this change to be updated in DB )
However you could achieve the same, without modification and with a little bit of custom development.
What you could do is, create a Custom elementary search help(SE11) with the standard fields HERST(Input) and EQUNR(Output) fields .Create and Attach a  custom Search help exit to the same by copying F4IF_SHLP_EXIT_EXAMPLE. In here modify the STEP SELECT to append a translated (Upper and lower case) selection condition to the query or a appropriate wild card search.Then select the same from EQUI.This should pull all your records. After testing this out , append this search help to the standard collective search help EQUI.
Hope this helps.
Regards
Narasimhan
Edited by: Narasimhan Venugopal on Jan 7, 2010 10:24 AM

Similar Messages

  • Preview 5.0 - Case sensitive search

    Is it possible to do case sensitive search in Preview 5.0?
    I am searching a PDF file for a combination of capital letters but I get hundreds of results of the same letters inside words. Is there any "advanced find" in Preview?
    thanks!

    bump

  • Case-Sensitive Search

    Hi all,
    I'm having a stupid problem. We use Robohelp 7.0 for Word.
    When people search using the search tab (compiled version), they
    seem to only find words according to the case (i.e., search for
    Quickbooks and Quickbooks shows up, but QUICKBOOKS doesn't return
    anything). Is there a way to turn off case-sensitivity?
    Any help would be greatly appreciated.
    Thanks,
    Jeff

    Search on a MIXED_CASE index is case-sensitive. Either re-index and build a case-insensitive index or consider using the ABOUT query operator.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Tosh Miller:
    Have a table with FILE_DATASTORE field and primary key of course.
    Index is case-sensitives (MIXED_CASE = YES).
    How create insensitive query to this table?<HR></BLOCKQUOTE>
    null

  • Case insensitive searching for criteria "All metadata"

    If I'm specifically searching in (for example) keywords, then the search is case insensitive. However, if I'm searching "All metadata" then the search is case sensitive. I don't know if this is a bug or a feature (seems like a bug to me), but I'd really prefer it to remain case insensitive for this search criterion as well.
    While I'm at it, I'd like to be able to search the IPTC headline.
    Bart

    I'll second that request on both counts! In fact, I'd like to see the ability to search based on any XMP field.
    -Andrew

  • Forms Editors -- Case sensitive search

    I need help regarding forms editors. i am having an user defined editor in my form. when editor is opened it has ok , cancel and search buttons(which is used to search for a particular text). right now this search button is case sensitive. is there any way to make it case insensitive.

    it depends on how the search button was coded.
    I used to have search button form containing a text item and search button( and other buttons), then in the search button, user typed in entry was put inside the UPPER() or LOWER() when constructing the where clause for execute_query.
    so you may look into that button to see if you can do similar thing.

  • Case Insensitive Search for the Dashboard Prompt Filter

    Hi,
    Can anyone help me, how to make dashboard propmt filter to be case insensitive, as of now dashboard propmts are case sensitive by default. How can we achieve this? Any help on this will be appreciated. TIA

    I wonder if it can be done. don't know if there's any work-around for it.
    Generally, the data that is imported into the SOD system is case sensitive hence the field on which you base your prompt will also be case sensitive.

  • Case sensitive usernames for wiki

    Hi I'm running the wiki services which get the usernames and passwords from another server which have upper and lowercase usernames, is there a way to ignorecase on usernames for the wiki? so if i type
    MSmith or msmith it still lets them login?

    Hi,
    AFAIK usernames whether Full or short names are case sensitive in OD. The wiki uses Password Server to authenticate against a user account. UserManagementv10.5.mnl for 10.5 Server describes the Open Directory creation and modification of a user account and the rules for Full and Short names. Case insensitivity is not covered.
    Using an add on script such as LDAP authenticators communicating with OD can implement any policy you want. But out of the box OD is case sensitive.
    HTH,
    Harry

  • How to solve this case sensitive problem for the parameters in function?

    Hi,
       I have a function, which should receive one parameter comes from textbox in BSP form. User will input upper case or lower case characters together in this textbox. But when I debug function, I found after function recevice the value from BSP form, the string value was converted into upper case automatically.
       I don't want system convert string to upper or lower case. I want keep the original value that user inputted.
       So is it possible to do this?
       Thanks!

    Hi,
       Thanks for your reply.
       Yes, I use the inputfield. The problem is if I use the parameter which contain user's input in the event handler of BSP, the value is equal to the user's input. But if the parameter was transfered into function, the value was converted to uppercase.
       But I want to keep  the original value.
       Thanks!

  • Is a Full Text Index search case sensitive or not in SQL Server 2012?

    I setup full text index on my contact table and am attempting to run a search on it using the following query:
    SELECT *
    FROM sysdba.Contact C
    WHERE CONTAINS(C.FirstName, 'Test')
    OR CONTAINS(C.LastName, 'Test')
    The problem is it's clearly running a case sensitive search. I did a quick search to find out how to change it to be case in-sensitive and found two pages (both for SQL Server 2012) with conflicting answers:
    1 - MSDN - "Query with Full-Text Search" - http://msdn.microsoft.com/en-us/library/ms142583(v=sql.110).aspx
    Case sensitivity
    Full-text search queries are case-insensitive. However, in Japanese, there are multiple phonetic orthographies in which the concept of orthographic normalization is akin to case insensitivity (for example, kana = insensitivity). This type of orthographic normalization
    is not supported.
    1 - TechNet - "Full-Text Search (SQL Server)" - http://technet.microsoft.com/en-us/library/ms142571(v=sql.110).aspx
    Full-text queries are
    not case-sensitive. For example, searching for "Aluminum" or "aluminum" returns the same results.
    Can someone please explain this? Is it possible to do it without it being case sensitive? If yes, how?
    (Sorry, I couldn't make those links b/c TechNet hasn't verified my account)
    Thank you for your time and help,
    Hanan

    Whats the collation setting for the columns? try using a case insensitive collation as below
    SELECT *
    FROM sysdba.Contact C
    WHERE CONTAINS(C.FirstName COLLATE SQL_Latin1_General_CP1_CI_AS, 'Test')
    OR CONTAINS(C.LastName COLLATE SQL_Latin1_General_CP1_CI_AS, 'Test')
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Query Variable: F4 search by Text is case sensitive in Web Templates.

    Hello Guru's,
    I have a problem, when I am trying to search the variables in Web Templates the search by text is case sensitive.
    For example If I have the customer name as "King", I have to search the text as King or Ki*, But If I search as king I will not get any results.
    I need to have my text search as case insensitive.                                                                    
    When I checked in my BEx queries the search is case insensitive. I have the problem in my Web Templates only. Please let me know do I need to change any variable settings ing the web templates or let me know how do I fix this issue.
    Many Thanks,
    Vamshi Krishna

    Hi,
    So the only workaround for this would be to goto RSD1 -> enter info
    -object as xxxx, and press maintain, then goto master data/text
    tab and select the check box, 'with text', now save and activate the
    infoobject. After this regenerate the query using tcode rsrt.
    To regenerate goto rsrt enter query name and press 'generate report'
    button.
    Now the F4 help screen should show the options search by key and search
    by text. So that you can select serach by key to have a case insensitive
    search.
    Thanks,
    Venkat

  • How to ... Search non-case sensitive?

    Hello,
    prior to SAP NetWeaver 2004s we implemented the How to Guide "How to ... Search non-case sensitive" in SAP BW 3.5.
    This solution is no longer valid in BI 7.
    Does anybody know how to implement a non-case sensitive search in SAP NetWeaver 2004s BI?
    Regards,
    Gerhard

    Hi Gerhard,
    I quote from OSS note 914303 :
    The BI search requires the TREX Server as of 7.0 Support Package 06 or higher. If the search engine is not fully installed, you can still use the standard search that the system carries out in the database. However, as a result, the search takes longer, <u>it is case-sensitive</u> and it does not support the search for attributes.
    Hope this helps,
    Best regards,
    Olav

  • Case Sensitivity in Search

    I'm not sure exactly where to look for a solution for this.
    But in Quotation search BT115QS_SLSQ if I search by a field say "Customer Request #" or any field for that matter.
    and search for OZ I got 100s of records.
    But if I search for oz I only get one record.  It appears search is done using case sensitive search, that is SAP CRM thinks:
    Joz Doe is not the same as JOZ Doe.  Is there a way to change this so that the search does not care about whether letters are upper case or lower case ??
    Thanks!

    Hi Murali,
    <li> Go to Layout of the screen
    <li> Double click on input field - Field attributes popup is displayed.
    <li> You will see Upper/Lowe case Checkbox. If you select that checkbox, It keeps the data entered as it is. If you do not select that check box, It always converts to Upper case.
    I hope that it solves your problem.
    Thanks
    Venkat.O

  • Default Search is Case-sensitive

    I go to contributor mode and try to choose an image. A window that contains alll the image content items show up. I type the name of the content item (an image) in the small search text box on the top right side of the window.
    It seems that when I enter a value in the text box, it performs a Case-Sensitive search. Is there a way I can make this case-insensitive search. For eg; Let us assume that we have a content item called 'IM_ABOUT_US_ICON'. if I enter 'im' in the text box, I do not get any result. But, if I enter 'IM', I get all content items that starts with 'IM'
    Thanks

    This is discussed in the following posts:
    Case Insensitive Search in UCM
    Where is Case Insensitive Search Component in UCM 11g?
    Jonathan
    http://jonathanhult.com

  • Case Sensitive External Drive for iTunes

    My iTunes Library is currently stored on a case sensitive external drive.  I am moving it to another drive that I found out is formatted as a non-case sensitive (both areJournaled).   When I tried to move my iTunes Library, it would not copy because there are apparently some duplications that are different in case and this causes a problem when duplication to a non-case sensitive drive.
    I figure I have two options:
    1) Reformat the new drive to be Journaled and Case Sensitive
    2) Go through the tedious process of identifying which files in the iTunes Library would be duplicates in a non-case sensitive drive.  There could be just a few or hundreds (or even thousands).
    What is the disadvantage of using a Case Sensitive drive for iTunes (option #1)?    I may also store some other files on this drive.
    I noticed that all my other drives, on both my desktops and external are formatted as non-case sensitive.

    If you can get to the two metadata files that iTunes keeps on the old PC, then you have several options. See: What are the iTunes Library files?
    1) Use the 'iTunes Library.itl' file on the old PC to completely recreate your Library. You will have to place all the music files/folders in the exact same location on the new PC as they were on the old PC. That drive letter and directory path. Then copy the older ITL file over the current one on the new PC. Open iTunes and you'll have a clone of the old PC's Library. As you have been using an ExHD to store the music, this would be my preferred choice. It's easy to remap the drive letter of an ExHD, if needed.
    2) The other way is to 'File=>Import' the XML file and recover the Playlists from there. They will not be in any folder structure as they were in the previous iTunes. Also, any playlists that depended on ratings, play counts and last played will be changed, as those attributes have not been carried over using this method.
    Post back if you have questions.

  • Turn off case sensitive for whole system

    Hello,
    I am looking for the feasibility to turn off the case sensitive functionality for the whole system. Is it ever possible?
    Thank you in advance.
    Dmitri

    Dmitri, at this time it is not possible to turn off the case sensitive functionality. I would recommend that you submit a enhancement request to CRM On Demand customer care.

Maybe you are looking for

  • Multiple reads of the same data from Multiprovider by Query (Bex)

    Hello, guys! We're having issue with performance of a query built on Multiprivider. During our investigation, we've found out that within one run of a Query, it several times refers to InfoProvider for the same data (see image attached). Do you have

  • I'm on a Mac and I need to fill out govt. special event permits and most are in .pdf format.

    When I change the docs into docx there are always a few items off.  I have the basic Adobe service - is there a service where I can actually work in the pdf format?  Is this an upgrade?

  • Connecting Drobo to XServe via FW800

    I have a 2x Dual-Core Xeon XServe, running OS X Server 10.6.3, and a DroboPro. I was able to succesfully connect the Drobo, but data transfers turned up FireWire errors. They show up on Console, but don't pop up as drive errors. The errors trace to t

  • Negative balance in Cash Account

    Is there any way to view only Negative balances in Cash Account???

  • Slow start up with Ver 7 ?

    Looking up library takes about 10 seconds. SOmething that it didn't do before. Does having all the album covers uploaded affect this? Cos I never saw it before loading 7 and I never had all the covers before 7 made it easy to download them. Tom J