How to Convert Lower Case name to Upper Case?

Hi Friends,
I have a requirement in my Application.
When User gives Student's name in Lower Case, always convert to Upper case and send it to SAP(R/3).
How is this possible?
Can anyone help me out in this regard,if possible please provide some sample code so that i can understand a bit clearly.
Thanks and regards,
Chandrashekar.

Check for java String methods.
http://java.sun.com/j2se/1.3/docs/api/java/lang/String.html
String nameString = "Name".toUpperCase();
or
String nameString = nameString  = wdContext().currentContext().getName().toUpperCase() ;
Regards,
Sridhar

Similar Messages

  • How to convert lower case letter to upper case letters

    hai all,
    How to convert lower case letter to upper case letters??
    Thanks & Regards,
    suresh

    Hi Suresh,
    Include ALL_CAPITAL in the RSKC Tx.
    Also try this code in your Transfer rule,
    TRANSLATE TRAN_STRUCTURE-(Info Object Name) TO UPPER CASE.
    RESULT = TRAN_STRUCTURE-(Info Object Name)
    Hope this solves................

  • How to convert lower case to upper case?

    Hi,
    How to convert lower case letter to upper case and vice versa?

    TRANSLATE
    Variants:
    1. TRANSLATE c TO UPPER CASE.
    2. TRANSLATE c TO LOWER CASE.
    3. TRANSLATE c USING r.
    See String processing
    Variant 1
    TRANSLATE c TO UPPER CASE.
    Variant 2
    TRANSLATE c TO LOWER CASE.
    Effect
    The first variant converts all lowercase letters in c to uppercase. The second variant converts all uppercase letters to lowercase.
    Example
    DATA letters(3) TYPE C.
    MOVE 'abc' TO letters.
    TRANSLATE letters TO UPPER CASE.
    letters now has the contents 'ABC'.
    Note
    The classification of upper- and lowercase, and the actual characters used are determined by the current text environment (see SET LOCALE LANGUAGE). Problems may occur when the system converts the characters, if the wrong language has been specified in SET LOCALE LANGUAGE, or if data has been processed that does
    Variant 3
    TRANSLATE c USING r.
    Effect
    Replaces all the characters in the field c according to the rule in field r. c1 containscharacter pairs. The second character in each pair replaces the first. If r does not contain a character in c, this character remains unchanged. r can also be a variable.
    Example
    DATA: letters(20) TYPE C VALUE 'abcabcabcXab',
          change(15)  TYPE C VALUE 'aXbaYBabZacZ'.
    TRANSLATE letters USING change.
    letters now contains 'XaZXaZXaZXXaZ'.
    REWARD IF USEFUL

  • Converting lower case to upper case data of flat file

    Hi All,
    I have a requirement purche order creation by using bapi function module.My requirement is  when I am uploading the flat file and if flat file  contains the data in lower case then before passing it to the function module i want to convert it in to Upper case. please tell me how can I do this.
    its very urgent.
    Regards,
    Amit.

    hi,
    Use translate statement ..
    DATA letters(3) TYPE C.
    MOVE 'abc' TO letters.
    TRANSLATE letters TO UPPER CASE.
    write : letters.
    Also refer
    /people/alvaro.tejadagalindo/blog/2006/12/21/does-abap-lacks-of-string-processing
    Regards,
    Santosh

  • How to write Lower case value to the upper case value in SMARTFORMS

    How to change the from lower case to Upper case in SMARTFORMS
    Ex. india to INDIA

    hi,
    chk this.
    DATA: T(10) VALUE 'AbCdEfGhIj',
    STRING LIKE T,
    RULE(20) VALUE 'AxbXCydYEzfZ'.
    STRING = T.
    WRITE STRING.
    TRANSLATE STRING TO UPPER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING TO LOWER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING USING RULE.
    WRITE / STRING.
    Output:
    AbCdEfGhIj
    ABCDEFGHIJ
    abcdefghij
    xXyYzZGhIj
    reward points if useful...
    -Umesh

  • How to convert a file name to title case

    hi,
      I have document library where name is displayed for the file that is uploaded. How do I convert the name to a calculated column =PROPER([name])? I've tried creating a new column, which is a calculated field =PROPER([name]) but it doesn't recognized
    the field. There is the title column which I can do a =PROPER([title]), but the title field isn't necessarily the same as the file name. Ideally, I want to convert to title case for any file uploaded. so the Name column is in the PROPER case. Thanks.

    "Title" is a field on the entity in the database. "Name" is what uniquely identifies the SPFile underlying the document.
    So you can think of Title as pretty arbitrary; you can change it just like you would change any other property (description, etc.) but if you change the Name, it is akin to moving the file. Names must be unique in folders/webs.

  • Conversion of lower case letters to upper case in ABAP

    Moderator message: when you've got your answer to this, find out how to do it the other way for the subject of your posts!  Please do not use ALL CAPITALS as subject
    Hi Experts
        How to convert lower case letter to upper case letter in ABAP
    Edited by: Matt on Feb 13, 2009 6:55 AM - subject changed

    Hi,
    Check the below syntax
    TRANSLATE text {TO {UPPER|LOWER} CASE}
                 | {USING pattern}.
    Regards,
    Anki Reddy

  • Using upper AND lower case fonts in iMoive - How?

    Can smoen please tell me how to get lower case fonts in a title in iMovie 11? I know there have been a lot of changes wihth thie version and it has a lot or power I want to explore- this one has me stumped
    HELP!

    thanks for you patient and apology for my poor english skill.
    at the moment i do need animation in the first palce, the thing is, my "title" is a sentence, and it will automanticaly take two line if i select the font size to 80, when i was applying the "expand" title style, in the beginning of the animation, it was fine, however, when it goes on expanding, the words in one line takes onger than before so some words were moved to the second line.
    please refer to the images, first one was the beginning of expanding animation, the second one is what it is changed like ("40" was moved all of a sudden to the second line).
    thanks.

  • Conversation lower case to upper case by default not wanted

    Hi,
    Oracle converts lower case table names and columns names to upper case by default. To keep lower case letters names must be quoted. This "work around" is not acceptable.
    Is there a way to change this behavior either for the database or for a session?
    Thanks

    Easy answer. We are migrating from sybase ASE to
    oracle. Sybase supports mixed lower/upper case by
    default.Which is a proprietary behavior. After all these years of accusing Oracle of not conforming to standards, when they do (or come close) it bites them. <g>
    Users are familiar with reading column names like
    "RxCellsHec0Clp0" instead of "RXCELLSHEC0CLP0".
    Yes, there are users working directly with sql.If the users are used to putting the column name in double-quotes, then creating the table with identifiers in double-quotes will conform to the expected behaviour. That simply means that each and every reference to the table requires double-quote around the identifiers.
    And it is quite impossible to get them changing all their queries
    from select RxCellsHec0Clp0 from ...
    to select "RxCellsHec0Clp0" from ...One alternative is to wrap every table (of concern) with a view. My thought would be to leave the table with upper case identifiers, have the view with mixed-case identifiers, and use private synonyms to redirect the user to the view.
    The assumptions are
    1) user-oriented security is in place
    2) users use the quoted-identifier syntax

  • How do I get lower case text on elements 12. I've tried everything!

    I cant figure out how to get lower case text! I've read everything and tried everything.

    What is "everything"? Have you, for instance, tried resetting the text tool or going to the editor prefs>general, clicking this button, and restarting the editor?

  • How to convert a string from upper case to lower case in FOX formula

    Hi Experts,
    How to convert a string from upper case to lower case in FOX formula?
    Thanks,
    Cheers!!!
    PANKAJ

    The last result.append( c ) should be:
    result.append( Character.toLowerCase(c) );

  • How to convert a string from lower case to upper case withour using transla

    Hi all,
    how to convert a string from lower case to upper case withour using translate,
    Thanks in Advance,
    Reddy

    Refer to this related thread
    Re: hi guys this very urgent please help

  • How to convert a text file in lower case to upper case?

    I've a beginner in java world and I just come through the tutorial in http://java.sun.com/docs/books/tutorial/essential/io/filestreams.html showing how to copy a text file:
    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);
    int c;
    while ((c = in.read()) != -1)
    out.write(c);
    in.close();
    out.close();
    And I would like to ask how to covert all lower case letters in input file to upper case letter in output file at the same time of copying.
    I guess it'll be using Character.toUpperCase(c), but I don't know how to do it actually.
    Any help would be much appreciated.

    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();
    }

  • How to CHECK WHETHER LOWER CASE OR UPPER CASE  IN CUSTOM TABLE

    Dear Friends,
                     I have a requirement where from  the flat file  i have collected into the internal table is as below :
      IDNo.     Name     Date      Location   Designation  Dept
      101       raja      4/12/2007  Delhi      manager      HR
      102       james    4/12/2007  Delhi      clerk          HR
    now iam checking against my custom table where iam   if the designation for the employee name already exists then i shouldnt modify/update the custom table that record
      now iam facing a problem where is the flat file is always having the Lower Case only ,
    as per the scenario  if my custom table already have the employee name i shouldnt modify/update i.e i shouldnt overwrite,
    this scenario is working but it is failing in the case
    by chance in the Custom table the employee name or designation is in Upper Case  the condition where iam checking in the code  is failing as the flat file data coming into the internal table is having always lower Case.
    So could any one please let me know how i should check in my custom table whether iam having upper case or lower case and how can i make it lower case ?
    because iam able to manage in the case where if the flat file data coming in Upper case i can check before only by
    using Translate to lower case . how i unalbe to  check for the data coming from the Custom table if  in Uppercase , so i want to change that to lower case then checking my condition whether that data already exists in my custom table before modifying the data coming from the flat .
    because the condition is failing when the data in the custom table is in upper case and the Flat file data is in lower case.
    please help how i can check for the data in the Custom table is in upper case and then change it to lower case.
    Regards
    Madhuri.

    Hi Madhuri,
    Translate both data in your flat file & custom table to lowercase before comparing them. With that, you're able to identify if there's a differences in for both data.
    If you're putting data that is pulled from custom table, what you can do is after selecting/reading the data, translate to lowercase or uppercase (whichever you prefer) but make sure if you translate to lowercase, your data in the flat file must be lowercase to and vice versa.
    Happy doing !!..
    Regards,
    Loo

  • I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    Several protocols may be used.
    Here I describe two of them.
    (1) the one which I use : install and use the "Convert to Lowercase" service available in the free WordService
    (2) copy your text, paste in TextEdit and enter the Edit menu.
    I guess that you will recognize the items in your English menu.
    I apologize but I don't know the English items.
    Yvan KOENIG (VALLAURIS, France) jeudi 16 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

Maybe you are looking for

  • How can I use User-Defined Aggregate Functions in Timesten 11? such as ODCI

    Hi we are using Timesten 11 version and as per the documentation, it doesn't support User-Defined Aggregate Functions. So we are looking for alternatives to do it. Could you please provide your expert voice on this. Thanks a lot. As the following: cr

  • Error executing essbase report script using maxl

    Hi, V 11.1.2.1 (64 bit) on windows An essbase report script errors when it is run from maxl. When I run it directly in maxl the error is Error - 1030205 - Client directory does not exisit: ...EssbaserServer\<instance>\client When I run it within EAS

  • Apple TV - HDMI to VGA

    I just bought an Apple TV 2 and am trying to hook it up to a VGA projector to Airplay stream my mirrored iPad. What is the best converter from HDMI to VGA?

  • APs not joining controller

    I upgraded a controller yesterday 5508 it went from a low code version 6.x to 6.0.196.0 then to 7.0.116.0. However although all the access points joined code 6.0.196.0 they refused to join 7.0.116.0. The aps are all 1242s. The country codes etc were

  • A notice has said I am unable to access my organizer as it is not registed but it definately is?

    I have been using my Elements 10 since before Christmas and I have had this fault happen on two occasions when I try to access the organzer it come up with: Elements organizer is not currently licensed. Please launch Photoshop Elements Editor to upda