Upper/ Lower case bug

Hi,
I have an issue when trying to create a report with upper and lower case variables. BW only allows me to bring in the upper or lower case variable, even though I can see both. This means I cannot bring back all information
e.g I select BUSINESS WAREHOUSE and BW converts this to business warehouse and vice versa.
Please let me know if anyone has had this before.
Thanks
Bhav

I think it should allow both ...Go to the Infoobject and Check the box to allow Lower case Letters

Similar Messages

  • How to search for upper/lower case using string using JAVA!!!?

    -I am trying to write a program that will examine each letter in the string and count how many time the upper-case letter 'E' appears, and how many times the lower-case letter 'e' appears.
    -I also have to use a JOptionPane.showMessageDialog() to tell the user how many upper and lower case e's were in the string.
    -This will be repeated until the user types the word "Stop". 
    please help if you can
    what i have so far:
    [code]
    public class Project0 {
    public static void main(String[] args) {
      String[] uppercase = {'E'};
      String[] lowercase = {'e'};
      String isOrIsNot, inputWord;
      while (true) {
       // This line asks the user for input by popping out a single window
       // with text input
       inputWord = JOptionPane.showInputDialog(null, "Please enter a sentence");
       if ( inputWord.equals("stop") )
        System.exit(0);
       // if the inputWord is contained within uppercase or
       // lowercase return true
       if (wordIsThere(inputWord, lowercase))
        isOrIsNot = "Number of lower case e's: ";
       if (wordIsThere(inputword, uppercase))
         isOrIsNot = "number of upper case e's: ";
       // Output to a JOptionPane window whether the word is on the list or not
       JOptionPane.showMessageDialog(null, "The word " + inputWord + " " + isOrIsNot + " on the list.");
    } //main
    public static boolean wordIsThere(String findMe, String[] theList) {
      for (int i=0; i<theList.length; ++i) {
       if (findMe.equals(theList[i])) return true;
      return false;
    } // wordIsThere
    } // class Lab4Program1
    [/code]

    So what is your question? Do you get any errors? If so, post them. What doesn't work?
    And crossposted: how to search for upper/lower case using string using JAVA!!!?

  • Internal Order match-code fail becuase Upper-Lower case

    Hi
    I'need to search Internal Order using a piece of teh Order description.
    Unfortunately the description COAS-KTEXT is case sensitive, and the Order is not found if Upper/lower case rules are not respected. I Have create a new Z match-code, bust this has the same problem.
    Any Idea to solcve thsi issue ???
    Thanks for your help.
    Claudio

    Hello
    pls check OSS note 75233, is decribed the solucion you are looking for.
    Solution
    Check whether an F4 search for short text is required.
    You must then either allow for the fact that the selection criteria "short text" is case-sensitive, or you can change all the short text to uppercase. This change is then effective during all displays and entries of the short text for the order and cannot be reversed. Any information which is provided in lowercase letters is then lost.
    You should also consider creating an index for the field AUFK-KTEXT.
    If you want to change to uppercase letters, proceed as follows:
    1. Modify the table AUFK. The field KTEXT requires another data element with a domain in which the flag "lowercase letters" is not marked. The most effective solution is to copy the data element and the domains and in addition to the descriptions, change only flag "lowercase letters"
                  This change means that for overhead cost orders (transactions KO01, KO02) only short text in uppercase letters can be recorded. 
    2. To change the already existing database entries to uppercase letters run report RDOTXT2U which is contained in the standard program and the current version of which is shown below. Please read the documentation for this report.

  • Upper Lower Case for Input Fields of ALV

    Hi,
    i have an ALV has some input fields columns. All values of input fields are upper case after entering something into that input fields (etc. airline -> AIRLINE).
    how to add upper lower case control to ALV? (etc. airline -> airline, AIRLINE -> AIRLINE)
    Thanks.

    Dear Narullah,
    The elements of your table consists of data types you can maintain in the SE11.
    The data type are based on a domain which you can maintain in SE11 as well.
    Just go to SE11 and check the domain which is behind the table field. On the tab "Definition" of the domain just checkmark "Lower Case". Afterwards the system does not translate your input to upper case automatically.
    If you use a SAP domain, you need to copy it to customer namespace, set the lower case flag, create a new data type based on your own domain and use it in the structure of your internal table.
    Does this help?
    Regards,
    Hendrik

  • Screenpainter Attribut Upper/Lower case

    Hello,
    i want to set the attribut 'Upper/lower case possible' to an element in a table control, but it is not possible.
    I can't set the falg, it's greyed out. Please help.
    Best regrads,
    Thomas Strehle

    Hi Thomas,
      For me it is coming, it is char field. In
      screen attributes Dic tab last check box (Upper/lower case)is enabled for me. please check yours.
    Siri.

  • Upper / Lower case using SQL

    Hello friends,
    i have to read a field out of a dbtable. The field contains e.g. a string like "a11B". During the sql selection i would like to use upper or lower case to transform the string to "A11B":
    SELECT...WHERE UPPER(attribute) IN range_variable.
    Can somebody say how this command looks like in abap?
    I haven't found a command for abap like UPPER() or UCASE() using mysql.
    <<help>>
    daniel

    Depending on you database system, you can use native SQL. For Oracle:
    report ztest no standard page heading.
    tables lfa1.
    data: name like lfa1-name1 value 'TEST'.
    EXEC SQL.
      SELECT *
      INTO :LFA1
      FROM  LFA1
      WHERE UPPER(NAME1)  =  :NAME
    ENDEXEC.
    This will select where the name is "Test" or "TEST" or other combinations.
    Rob

  • Upper lower case problem.

    Dear all,
    in the following code i want to cmpare the database user with the user in my table.
    here is a problem when i connect with the user which name is stored in upper case in table its okey.
    but when i login with a user which name is store in lower case in table its give error :GLOBAL.FRM_USER not found.
    declare
    vusr varchar2(10);
         v_db_user varchar2(20);
    begin
         select user
         into v_db_user
         from dual;
         select LOGIN
         into vusr     from mis.SETUP_USERS
         where LOGIN= v_db_user;
                                  :GLOBAL.FRM_USER := VUSR;
    end;
    Thanks in advance.
    Muhammad Nadeem
    [email protected]

    Are you getting this error directly in this piece of code?
    If the following select does not find a value I think an exception would be raised which would mean you bypass the assignment of your global
    select LOGIN
    into vusr from mis.SETUP_USERS
    where LOGIN= v_db_user;
    Later if you reference :GLOBAL.FRM_USER on the right hand side of an assignment you will probably get the error
    If you use default_value('GLOBAL.FRM_USER','some value you think is relevant'); at the top of this code you should not get the error (I hope) but you should maybe consider if the select into raises an exception you want to deal with it, or consider using upper to ensure you match on usernames, but be careful you do not invalidate an index lookup.

  • Autocomplete upper/lower case

    I am currently running 3.0.04(Build MAIN-04.34) on Windows XP. For a while I had the auto complete working exactly as I wanted it, and now it is always showing upper case.
    What I want to happen
    I type "SELECT * FROM myschema.ta" and then hit ctrl+space I want it to auto complete to "SELECT * FROM myschema.table" instead it is currently auto completing to "SELECT * FROM MYSCHEMA.TABLE"(about 90% of the time) or occasionally "SELECT * FROM MYSCHEMA.table"(about 10% of the time). I've tried messing with the various settings but I can't seem to find the right combination. Also, the fact that the behavior changes baffles me. I am assuming I am altering the preferences somehow without realizing.

    Hi Claytonian,
    Actually, there is.
    On Preferences - Shortcut Keys, fill 'convert' on the search box.
    It will show you the list of available command to change to upper or lower case, however unfortunately there is no initcap.
    In my SQL Dev, I put Ctrl + U as the key combination for 'Convert Selection to Uppercase', and Ctrl + L for 'Convert Selection to Lowercase'.
    Hence, using these key combinations, we can change case without modifying the autocomplete preferences.
    I rarely used initcap, so I guess this is quite enough.
    If you feel the need of initcap, feel free to put suggestion on SQL Developer Exchange.
    Regards,
    Buntoro

  • Upper/Lower case conversion

    Hi folks,
    Apart from the Infoobject General tab where an infoobject can be selected to allow Lower case letters, are there any other areas where this can be done? We need to allow this for a standard infoobject and thinking is that we can change this at some other level such as do a conversion at the datasource level so only uppper cases flow through. This is a char field but can contain both Upper cases and Lower cases. Right now, with the standard infoobject the DTP load fails when trying to load the data with lower case characters.
    Thanks for your help.

    Hi,
    As mentioned above you will have to use TRANSLATE command to do the conversion. Now you can either write a routine at Infoobject level or write a field routine for conversion. In case of infoobject routine again you might have to change the original infoobject so I would suggest you to go for Field level routine in transformation.
    RESULT = source_fields-XYZ.
    TRANSLATE RESULT TO UPPER CASE.
    Regards,
    Durgesh.

  • Dynamic Search - Upper/lower case of Search Criteria

    Hi,
    If I enter a search criterion in lower case in the text box field of my dynamic search, the string gets automatically converted to upper case when I press 'Search'. Is there any way to retain the case of the search parameter value?

    Hi,
    the data types for the input fields of the search mask are of type STRING. There is no conversion done there.
    If the case changes it has to be done in the applicatgion logic of the view controller, most probably the EH_ONSEARCH().
    Another hot option is the data element that is used for the parameter. Does it allow lower case values?
    cheers Carsten

  • Can Grep find duplicates in a list solving upper/lower case differences?

    The idea is isolate the info. Any grep that lead to these results will be enough to resolve the problem. Thanks.
    actual list
    option 1
    option 2
    option 3
    halogen
    halogen
    halogen
    Halogen
    Halogen
    Halogen
    thebaica
    therefore
    therefore
    their
    Therefore
    Therefore
    them
    they
    they
    therefore
    They
    They
    Therefore
    thermal
    These
    they
    They
    thin

    I hope it'll be clear. Maybe I complicate the issue but I do it quickly.
    1/ I apply the condition "All" to the entire text.
    2/ I apply a char style "Capitales", so that I can convert all in Lower case (see ID menu).
    3/ First Regex [for Option 1] (I forgot the screenshot):
    in French:
    Rechercher : ^(.+\r)\1+
    Remplacer par :      (nothing)
    Remplacer le format : select condition "Option 1"
    4/ 2nd Regex [for Option 2]
    4/ 3rd/4th/5th Regex [for Option 3 - in 3 steps]
    5/ 6th Regex: I delete all the Text with condition "All".
    6/ Now, we only have the Text with conditions Option 1/2 and 3 (see the colors).
    7/ If you want, you can delete the 3 conditions:
    DONE!
    I use a lot with Grep the possibilities Conditions offer us!!! More complex but more fun! 

  • How to query free text and how to efficiently process upper/lower case

    Hi friends,
    I'm now have two questions need your helps.
    1, i want to query free text base on oracle semantic, i tried create a Full Text Index on object like ‘CREATE INDEX di_obj_idx ON data_integration(to_char(triple.GET_OBJECT())) indextype is ctxsys.context’, but i got an error 'DRG-11304:function-based indexes are not supported by this indextype’. it seems that can't specified a column with functions. so any way for this?
    2, base on some reasons, we need to query something ignores upper/lower. of course, we can use upper/lower functions, but the performance is very low. what my question is is there any functions can be used in SEM_MATCH table function or any way can give me the higher performance?
    best regards,
    steven
    Sep 9,2009

    Hope this helps
    import java.io.*;
    public class Copy {
    public static void main(String[] args) throws IOException {
    File inputFile = new File("farrago.txt");
    File outputFile = new File("outagain.txt");
    FileReader in = new FileReader(inputFile);
    FileWriter out = new FileWriter(outputFile);
    BufferedReader buff = new BufferedReader(in);
    String c;
    while ((c = buff.readLine()) != null)
    out.write(c.toUpperCase());
    in.close();
    out.close();
    }

  • TestStand function to change Upper/Lower Case?

    How can I perform a "toUpper()" on a variable using TestStand expressions? I want to force all upper case on a string that a user has input, before validating it.
    I know I can do this in a VI, but I would hope that TestStand could do this. There appears to be a set of string functions (like len(), search(), replace(), format()) but I don't see any case manipulation.

    TestStand 2.0.1 does not have these functions, so a code module is the way go. However, it is very likely that these functions will appear in a future version of TestStand.

  • Issue with upper/ lower case in HR report...

    Hello,
    I am working on a HR report. Based on last name on selection screen, I am fetching some data
    from intotables.
    The problem is, for example in case of last name, the system expects the user to type the
    last name in exact case as its stored in database table.
    So for example, if last name is "Anja" in database table, then if user types "ANJA" or "anja" or aNja, the
    select query does not fetch the data.
    How can I modify the query so that, even if user types last name in any case, it should still fetch the
    record.
    SELECT aPERNR bNACHN b~VORNA
           INTO TABLE itab_data
           from PA0001 as a
                inner join PA0002 as b
                on apernr = bpernr
           where a~PERNR in S_PERNR
           and   a~BUKRS in S_BUKRS
           and   a~KOSTL in S_KOSTL
           and   a~PERSG in S_EMPGP
           and   a~PERSK in S_SUBGP
           and   b~NACHN in S_LAST.
    Please help.
    Regards,
    Jainam.

    Hi,
    Use NCHMC instead of NACHN as NCHMC stores last name in upper case.
    Convert contents of S_LAST to uppercase before using in where clause..
    SELECT a~PERNR b~NACHN b~VORNA
    INTO TABLE itab_data
    from PA0001 as a
    inner join PA0002 as b
    on a~pernr = b~pernr
    where a~PERNR in S_PERNR
    and a~BUKRS in S_BUKRS
    and a~KOSTL in S_KOSTL
    and a~PERSG in S_EMPGP
    and a~PERSK in S_SUBGP
    and b~NCHMC in S_LAST.  " >> Change

  • How does lsmw control upper/lower case?

    I have a client that wants all text fields to be in upper case?
    How can we control this in lsmw (the only way we are loading data)?
    Thanks.

    In step 'Maintain field mapping and conversion' is where you define how to convert data. Have you tried converting the text to uppercase here?
    Thanks,

Maybe you are looking for