Translate search parameters to lower and upper case

Hi All,
I need to create a search function. Is it possible to translate the search paramaters to  both upper and lower case because inside the data there are data with upper case or lower case or both.
Thanks in advance.

Hi ,
  As per your requirement you have to write logic for three conditions :
1. Translate whole word into upper case .
    TRANSLATE  your field name  TO UPPERCASE.
2. Translate whole word into lower case .
    TRANSLATE  your field name  TO LOWERCASE.
3. First character of your field should be in uppercase rest in lower case .
so write your logic now considering third point also .
Regards ,
Nilesh Jain .

Similar Messages

  • Lower and upper case repair

    I have a macbook air. It felt down from my hand on its corner and has damaged. The up-left corner is chamfered like 0.5 cm on both lower and upper cases. I would like to know what can I do to repair its body since there is not any software problem with it. Does apple fix it and if yes, how much does it cost.
    Thank you.

    Welcome to the Apple discussions.
    Yes, Apple can repair. You'll have to take it to the Apple store to find out the cost, and you should probably be sitting down when they tell you the cost.

  • Function Module for Translation of text from Lower to Upper Case

    Hi All,
    Can any one give me function module for translation of text from lower to upper case.
    If we use Translate statement for the program in the Extended Syntax check it is giving error.
    Thanks in advance.
    Regards,
    srinivas

    Hi Srinivas,
    You can use any of the Function Modules below.
    AIPC_CONVERT_TO_UPPERCASE
    2054_TRANSLATE_2_UPPERCASE
    HR_99S_CONV_UPPER_CASE
    Please reward if useful.
    regards,
    Raj

  • SharePoint crawled property with both lower and upper case

    I have web page which has meta tag, like CN_ABC, then after I crawled these pages, and when I try to map this property to a managed property, I always see there are two crawled property available, one is CN_ABC, the other is CN_abc, only difference is
    the lower case and upper case, I have seen this in many other site and many other meta tag, what was happening?

    The meta tag you mean is a site column created for the page library?
    This doesn't seem can be happened, if it is a site column, then it will create a crawled property for the column, named like: ows_sitecolumn, also, CN_ABC, CN_abc is not to distinguish lower or upper case, it should be CN_ABC or cn_abc.
    I would suggest you to delete the related crawled property for the column, then do a full crawl, check whether it is happened, if it insistes, map the crawled property to different managed property, whether it returns same value.
    Thanks,
    Qiao Wei
    TechNet Community Support

  • How to Handle the lower and upper case in 'POPUP_GET_VALUES'

    Hi All
    i am using the following FM and when i enter value on the
    popup in lower case or with capital letters i see the field
    with upper case ,this is problem for me since i need to
    take the field and compare it ,there is a way to handle this
    issue ?
    CALL FUNCTION 'POPUP_GET_VALUES'                      "#EC FB_RC
            EXPORTING
              popup_title     = lv_head_msg
            IMPORTING
              returncode      = lv_rc    " User response
            TABLES
              fields          = lt_field    " Table fields, values and attributes
            EXCEPTIONS
              error_in_fields = 1
              OTHERS          = 2.
    Best regards
    Alex

    Hi Alex,
    This because, the field and table name that You are passing in lt_field, has a conversion attached to it, which causes the converison in case.
    For e.g. If You pass MARA-MATNR and try to get the values from pop-up, the value will get converted to upper case, but if You pass MAKT-MAKTX (which does not have a converison attached to it), the value will be retrieved as it was entered. This is standard SAP, which is correct.
    If You need to get values of any text field, pass any SAP text field as reference in your table lt_field. Hope this helps...
    Rgds,
    Birendra

  • Duplicate members in lower and upper case

    Hi
    In BI I/O duplicate members are there in lower and uppercase. How to suppress these members while loading into BPC dimension.
    regards
    Mahi

    Hi Raghu
    In my case I want to load one of the duplicate members in BPC dimension. Say XYZ and xyz are two members in my BI I/o. but I want to load only XYZ or xyz.  I know selection option will work for loading transaction data for a set of members.
    regards
    Mahi

  • Photos lower and upper menu don't disappear

    hi
    When browsing photos the lower and upper menu used to disappear after a few seconds. Now they don't. They stay over the top and lower part of the photos. Is there a place where you can change settings for this?
    Thanks
    Sami

    Hello Sami,
    In addition to the suggestions offered so far, without the ability to restore the iPhone, there are only a couple of things I can suggest.
    There are two methods that should turn off the, as mentioned, a tap on the display should get the bars to vanish. Holding your finger on a section of the image for about 1-2 seconds should also get the bars to turn off.
    There is no built-in setting that controls the display of the bars.
    You mentioned that you've "rebooted" the iPod. Did you mean powering it down and restarting it, or actually resetting it by holding down both buttons. If resetting with both buttons doesn't resolve the issue, the next step(s) would need to be done when you are back at your computer. Once you are back at your computer, the first thing you may want to do is import the pictures into whatever photo software you are using.

  • Small caps - is there a way to change size ratio of lower to upper case?

    I am using Adobe InDesign CS4 and one problem I've had is that when I select Small Caps on the character styles panel, lower case characters are about 60% the size of upper case characters. I'd like this to be more around 80% in my document.
    I don't see a way to do this, so I'm having to avoid using Small Caps and am having to select various portions of each word and set them to different sizes.
    Is there a setting I am missing for Small Caps that would save me this trouble? My typeface is Minion so I may also see if there's a variant available that uses well-crafted small caps.
    Tim

    Dave,
    >.. adjust the size of the "lowercase" characters by using a GREP style
    Yes ... and no.
    It doesn't have to be an extremely complicated GREP style. You mention Unicode ranges, but it's not even necessary. You could try
    >[a-z]
    to select all lowercase characters, but it leaves out accented ones. Now specifying ranges for these doesn't work very good (to put it mildly), because they do not appear consecutively in the Unicode set.
    Fortunately, GREP has a wildcard
    >\l
    for "lowercase", and this matches
    i every
    lowercase character (even Greek and Russian ones). It's equal to the POSIX expression
    >[[:lower:]]
    As this seems to work just the way you want, then why the "No"? The GREP style will be applied to
    i all
    lowercase characters in the paragraph, not just to the words you wanted.
    [Warning: Dirty trick follows. Do Not Copy Unless Forced To.]
    Of course you can
    i force
    the GREP style pick up 'unique' words by making them unique somehow. If you insert an invisible character
    i before
    and
    i after
    the words you want to mark -- in the case at hand, the ones you want to small-capitalize --, you can include the invisible characters in the GREP style. For example, by specifying
    >~-\l+~-
    you can "mark" words by inserting a soft hyphen before and after certain words. (This example also presumes only lowercase characters inbetween.) You don't have to use the soft hyphen, there are a couple more markers you could (ab)use. I think I'll leave it up to your imagination to wonder where it could possibly go wrong.

  • Standard LOV and upper case.

    Hi,
    I was wondering if there is a way of customising the find field of the standard LOV so that it is in uppercase??
    If this isn't possible, is there a way of doing an upper of the find parameter when it queries against the data source???
    Thanks
    Greg.

    Are you saying that the first column is in mixed-case and you need to be able to lookup ONLY on upper-case?
    If that is the situation, you might try creating a nearly hidden first column (one pixel wide) in the LOV which is the upper() version of the (now) second column. The lov will do its searching on the hidden column, but the form will display the second (and additional) columns.

  • On version 19 which just downloaded why doesn't the primary search box doesn't work when all other search functions (address box and upper search box) do?

    The primary search box in the center screen does not respond to any search input.
    In contrast:
    (1) the https:// address box responds immediately and normally when input is provided and the curved arrow tapped,
    (2) the upper search box in line with the address line works normally also when a search inquiry is provided and the magnifying glass tapped, and
    (3) all bookmarks work normally as they had previously prior to Firefox upgrading to 19.
    Everything seems normal with the exception of the center search box and the search command.

    I have tried all the so-called fixes listed here, but since downloading version 19, I can't get the search box to work. If I go through and try the fixes here, it works until I shut it down, and then I have to go through all these steps again. Trying to get someone to help is virtually impossible, and I am getting to the point where I will uninstall Firefox and use IE, as I have no other choice!

  • Zero Fill and Upper Case in Visual Composer not working

    Hello,
    I am building my first VC application and hit a small wall from get go. When I create input fields and set text formats for one to have "Zero Fill" and for the other one "Upper Case" they do not seem to work properly.
    “Zero Fill” does not work at all. I set this format and also set max length as 10 to be used as input for customer account #. But it does not perform conversion. When I call a BAPI to get customer list, if I enter 0000000100 it works. When I enter 100 it does not work. Thus "Zero Fill" does not take effect.
    "Upper case" works but only after refresh. If I enter ac10 as company code and then click submit it does not work. However if after entering ac10 I press enter and then submit, it work.
    Does anyone have any info on how to deal with this? We are using VC 7.0
    Thanks,
    Alex

    Hi ALex,
    Now I got your problem. I suggest a solution for it.
    Go to the design board of VC.
    I think you have an Input Form that contains the input fields and the Submit button. There will be a link named "submit"between the Input Form & the Data Service(say BAPI). Click on the  submit link, you will get the Input Fields & Assigned values of the Input Form at the bottom right side. Go to the Assigned Value of the particular field & apply a formula like UPPER(@inputfield). So now whatever case you give in the inputfield, it is converted to UPPER case before Submiting the values.Keep the Upper Case option checked at the formatting tab of the Input field properties, this will help to display the value in Upper case.
    For eg, BAPI_BANK_GETLIST, the input fields are BANK_CTRY & MAX_ROWS.
    Make the assigned value of bank_ctry as UPPER(@BANK_CTRY), you can get this with the help of formula. 
    This will solve your problem.
    Regards,
    Shemim

  • SQL keywords. lower or upper case?

    Hi all!
    The plsql parser does any special treatment to sql keywords, e.g, transform all to upper case, before doing internal processing? Same question for SQL scripts/querys!
    Thanks,
    Rui Rodrigues

    Even if there is I'm quite sure any redundant select sysdate/user from dual will outperform all yoctoseconds you'll get.
    The other factor for peformance to use some conventions of course is not to flood shared pool with statements that differ just in case and/or spaces for example:
    SQL> select user from dual;
    USER
    SYS
    SQL> select USER from dual;
    USER
    SYS
    SQL> SELECT user FROM dual;
    USER
    SYS
    SQL> select SQL_TEXT, SQL_ID, ADDRESS, HASH_VALUE from v$sql
      2  where upper(sql_text) = 'SELECT USER FROM DUAL';
    SQL_TEXT
    SQL_ID        ADDRESS  HASH_VALUE
    select USER from dual
    658001za01gf9 68351148 3556818377
    SELECT user FROM dual
    9rwkva5jwdkfj 6BA2CBE8 1673972177
    select user from dual
    ahc9t761kxw30 6BAD3E70 2200891488Gints Plivna
    http://www.gplivna.eu

  • Base speed for fun;lower and upper threshold for macbook pro 13" mid.2010

    i have install fun control, and i have modifiated impostation for base speed (fun) lower and uppeer threshold, 
    what is the parameter impostated by apple?
    thanks
    Francesco from Verona

    Fan base speed is 2,000 RPM and increases upon load.
    122-158º F is normal
    You have a 13" MacBook Pro, it doesn't also have a dedicated video card (like the 15" and 17" do), only CPU graphics, thus the heat is double in the same location.
    This is normal for all CPU graphics machines, Intel or AMD processors. Mac or PC.
    Don't use the 13" for intense graphics uses or in hot environments.

  • Ho to convert to lower case values and upper case

    hi
    pls let me know how to convert the varlues to lower case
    and how to conver values to uppoer case
    whichis funtion module to do so?
    regards
    Arora

    Hi,
    <b>TRANSLATE</b>
    Converts characters to strings.
    Syntax
    TRANSLATE <c>  TO UPPER|LOWER CASE
                  |USING <r>.
    The characters of the string <c> are converted into upper- or lowercase, or according to a substitution rule specified in <r>.

  • In power point lower and and upper cases doesn't work but it comes and a normal digit for example x to the power 4 comes as x4

    as you can see none of them shows up as powers but when i transfer it into my pc it works perfectly

    What backups do you have?

Maybe you are looking for

  • No internet in new home

    I can not get an internet connection through my Airport Extreme (.11g). I just stopped using an ADSL modem in my previous residence (in Australia) and now have a Motorola cable modem (SB5120) through Cox (in VA). I have turned off PPPoE on all my com

  • How to search for a new line character in sql

    hi..i am using oracle 10g. basically i am looking for usage of columns.I want to see which all columns are used in joins. this is the quey i have written. but if there a new line between WHERE ,AND those scenarios are ignored.how to take care of thes

  • I used to have atool bar that staed with "file" "edit" etc. It is gone. How do I get it back?

    I used to have a tool bar on my Fox Fire google home page that started with "file", " help" , etc. It is gone. How do I get it back?

  • House bank error

    Hi Experts, User is running the APP with the house bank ABCD/L1234, system is taking house bank EFGH/L1234, even if we exclude the house bank EFGH/L1234 the system choose EFGH/L1234 for payment method X. We cheked the payment log " Our bank ABCD is b

  • Payment term conditional

    Hello One of our customers specified in his contract a conditional payment term. The payment date has to be the latest one between two dates. My question is : is there a possibility in SAP to create this kind of "conditional" payment term ? Regards S