Converting small letters in to Capital letters

Hi
I have a scenario where the input is in small letters and i wanna convert in to capital letters befor sending it to BAPI .. as BAPI accepts Capital letters as input ...
any idea how we do that...
  SV

Hi,
In Text Function  you can find LowerCase-Converts all upper case letters in I to lower case letters  &
toUpperCase- Converts all lower case letters in I to upper case letters
Regards
Agasthuri Doss

Similar Messages

  • How to convert capital letters to non-capital letters?

    Does anyone know how to do this? Currently, I have a small Widget in Dashboard that I found that does this perfectly, however, its too annoying to have to convert it and then copy & paste it into a Text application (ie. Page or Word).
    I was hoping, no let me rephrase, dreaming that Pages could do so, but I don't think it does; so I was hoping someone can tell me if they know of any programs that I can use that does just that.
    Some great features that I would like, but not necessary, is:
    1) that it allows you to export directly into any applicaiton (ie, Pages or Word)
    2) the ability to convert from non-capital letters (sentences, paragraphs and even pages in bulk) to capital letters.
    Anyone? I would appreciate any feedback, good or bad. Thanks!

    Hi DennisG
    This initially seemed odd to me too.
    I think it is because Pages retains the original Unicode character and regards capitalization as a formatting change - not a change to the character code itself. To illustrate, type the sentence "Dinner is booked for Dennis and Ian on Friday afternoon at 1pm." into Pages. You will notice that as you toggle between All Caps and None for the Capitalization setting, the appropriate case is preserved for things like proper nouns and the start of the sentence. Not a big deal for one sentence but imagine you had hundreds or thousands of sentences that you wanted in the same style and wished to experiment with presenting them in capitals!
    Pages isn't alone in doing this. Microsoft Word on Windows behaves the same way if you select the All caps check box in the Font dialog. Word provides a separate Change Case ... menu option that seems to permanently convert the actual characters instead of their appearance.
    I think it would be useful for Pages to have a similar feature and suggest that Vito submits feedback in the normal manner.
    iMac 17" Flat Panel (OS X 10.4.8)    

  • Script to replace small caps that are typed as capital letters with non-capital letters (A = a, B = b, etc...)

    I'm looking for a way to replace small caps that are typed as capitals by their normal equivalent.
    I've got a text that contains a lot of names which should all be set in small caps.
    In fact they are, but because capital letters are used for first letters they don't scale.
    Short: I would like to be able to look for A, B, C... (in small caps) and replace them with (a, b, c...) in small caps in one go.
    (compare two arrays?? -> is this possible in indesign scripting)

    Hi,
    Actually, it works only with OpenType fonts and - in this case - can be managed by UI find...change feature.
    With other type of font we need a real change of contents (another keyboard hit).
    It could be done with this code (activeDocument is a target):
    -- works for Open Type as well --
    // For Latin Basic (ASCII from 65 to 90)
    // changes a "cap" letter to a "small" letter
    // if Capitalization.SMALL_CAPS is applied to
    app.findGrepPreferences = app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\u";
    app.findGrepPreferences.capitalization = Capitalization.SMALL_CAPS;
    var
      mSTART = 65, // ASCII number for "A"
      Mstart = 97, // ASCII number for "a"
      mDiff = 0,
      mTarget = app.activeDocument,
      mFound = mTarget.findGrep(),
      len = mFound.length, cString;
    while (len-->0) {
      cString = mFound[len].contents;
      mDiff = cString.charCodeAt(0) - mSTART;
      if (mDiff > -1 && mDiff < 26)
      mFound[len].contents = String.fromCharCode( Mstart + mDiff );
    app.findGrepPreferences = app.findGrepPreferences = null;
    Jarek

  • Converting Capital Letters to Small Letters issue

    Half of this program works, meaning it does convert capital letters to small, but then when the letter is already small in the array as shown in the array list, I am having problems printing that out...I am confused.
    public class TesingEx3
         public static void main(String[] args)
              char[] arrayLetters = {'A', 'B', 'c', 'D', 'e', 'f', 'G', 'H'};
              // 65 = A, 90 = Z, 97 = a, 122 = z 
              for (int index = 0; index < arrayLetters.length; index++)
                   if (arrayLetters[index] >= 65 || arrayLetters[index] <= 70)
                        int letter = arrayLetters[index] + 32;
                        char convertLetter = (char) letter;
                        System.out.print(convertLetter);
                        System.out.println();
                   else
                        System.out.print(arrayLetters[index]);
                   and then here is my OUTPUT:
    ----jGRASP exec: java TesingEx3
    a
    b
    d
    g
    h
    ----jGRASP: operation complete.

    ravindra.alld wrote:
    why we make String when we do it with the help of int or byte.
    this is more memory efficient.When memory efficiency becomes a legitimate concern, we'll consider it. Until then, the choice is between using a method whose name says exactly what we're trying to accomplish, or treating characters as if they were numbers and doing arithmetic on them with the aid of magic numbers. Let the simple stuff be simple, and save your ingenuity for the hard stuff.

  • Changing the small letters to capital letters

    Hai,
    Experts,
      I retrieved the data from ADRC table into the Smartform. Then it displayed the data in small letters. How should i Change that Data in Capital letters.
    Thanks & Regards,
    Rathnam.

    Hi..
    use translate stmt..
    <b>translate <fld > to UPPERCASE</b>.
    The TRANSLATE statement converts characters into upper or lower case, or uses substitution rules to convert all occurrences of one character to another character.
    Converting to Upper or Lower Case
    TRANSLATE <c> TO UPPER CASE.
    TRANSLATE <c> TO LOWER CASE.
    These statements convert all lower case letters in the field <c> to upper case or vice versa.
    Substituting Characters
    TRANSLATE <c> USING <r>.
    This statement replaces all characters in field <c> according to the substitution rule stored in field <r> . <r> contains pairs of letters, where the first letter of each pair is replaced by the second letter. <r> can be a variable.
    For more variants of the TRANSLATE statement with more complex substitution rules, see the keyword documentation in the ABAP Editor.
    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.

  • Small letters -capital letters change in Flash CS5

    hi,
    How to change the small letters to capital letters in flashCS5. Please any one tell the solution.
    thgs,

    you might have to explain exactly what you are trying a bit more
    you can use the String's toUpperCase() function.
    so if you have a textfield for example
    myTextField.text = myTextField.text.toUpperCase();
    if you want to force small letters to capitals as a user types in a textfield then you would need to add an event listener listening for teh change event and use the above code.
    if you are after something else explain in more detail please

  • CS5, checked "save file extensions as small case letters" but still capital, why?

    hi,
    i installed CS5 4 weeks ago, since this time, i never got a file extension in small case letters, only capital letters ( xxx.TIF ). why?
    i checked it in preferences, see enclosed screenshot... i never had this problem in CS4.
    it would be important for myself, when saving files, that alle extensions are small case letters, like xxx.psd or xxx.eps
    usually i rename these extensions manually, cause i am uploading final images to PC servers, which
    cant recognize capital letters, i presume....

    no, i am still dealing with this problem on both macs,
    mac pro mid 2010 2,8 quad (24GB RAM) and my mbp 15" i7 (4GB RAM)
    where i installed Photoshop CS5.
    on both macs, photoshop always saves files with capital letter file extensions (xxx.TIF or xxx.PSD)
    thats very annoying, as i have to manually rename the file in the finder later.
    and thats for all files i create.
    i really wonder, could anyone from the adobe staff please comment if it is a bug
    or anything else?
    thanks!

  • Iphoto shows two photo libraries with the same name, one in small letters the other in all capital letters. they both open the same library and the only one in my computer. How do delete the capital letrs one as the one in the pictures folder is in

    In my  iPhoto application when I select switch libraries It shows 2 libraries with the same name, but one has the name is in Capital letters.
    They both open the same library which is in the Pictures folder. This is the only library I can see and the name is not in capital letters?
    How do I get rid of the one in capital letters

    What is your iPhoto version?
    when I select switch libraries It shows 2 libraries with the same name, but one has the name is in Capital letters.
    In the Library Chooser Panel look for the pathes to the two duplicate libraries. You will see the location of the libraries in the path bar at the bottom of the window when you select one of the libraries. Does it show both libraries in the same folder?

  • TS1314 Dear all, greetings, I did not mean to offend anyone by typing all my texts in capital letters, I am just used to it and at my age (63) it is better and easier for my eyes to type all the texts in my messages in capital letters.I do apologize about

    Dear all, greetings, I did not mean to offend anyone by typing all my texts in capital letters, I am just used to it and at my age (63) it is better and easier for my eyes to type all the texts in my messages in capital letters.I do apologize about it all. I can assure you that I do respect all of you more that you maight me thinking of. i have the same difficulties in typing in small letters like yours in reading texts in CAPITAL letters.......tant pis, c' est la vie
    For web and computing experts I would like to remind them that all the peoples nowadays have the same needs (or hobbies if you wish) regarding the electronic devices, web, compouters, softwares and that sort of thing.
    If I WERE not to have technical support because of my prefiously used capital letters in me text messages, I have to confess that next time I will be more carefull about the devices producers........ I live and always learn (SOCRATES, girasko, aei didaskomenos)
    Two questions
    1. I noticed on the you tube videos about the new ipad that the main icons are more than mine (i.e. the icon of facebook and a number or others are missing)
    2. I would like to ask you to do me a favour, thanks for your patiene. Still I have not understood how (in which way, the pictures, transfered from my system or new taken by the ipad camera are uploaded directly to the FaceBook. I suppose that I will not have the same difficulties regarding the videos to both Facebook AND YoutTube. Thanks a lot for your patience with me, from now on I will be more carefull about posting messages to you referring to technical support
    Constantinos
    Athens, Greece

    Some of the apps shown in adverts / videos have been downloaded from the App Store, they don't come pre-installed e.g. the Facebook app is a free download the app store : 'official' Facebook app.
    To upload photos to Facebook you can use the above app - you can't, for example, use Safari on the iPad to upload content to sites.
    Not sure whether any apps allow you to upload videos to YouTube (I don't use the site).

  • Why capital letters change in lower after copying them from a PDF document, or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    Why capital letters change in lower after copying them from a PDF document (Made by InDesign), or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    your home page to get into your Web site should be index.html (for Mac) or index.htm  (on PC)
    You can name it something other than index, but will be harder to find.  when you create the subjects and link to them, they can can be named anything with the html extension  Or if your using PHP end in .php. There is a Microsoft type asp or aspx but your hosting service has to set up using windows server system.
    My hosting service use a Linux server normally but can convert Windows for a Fee.  UNIX Linux has no concept of asp or aspx.
    See this : https://skitch.com/pjonescet/8mnnx/dreamweaver

  • Exporting to word, random capital letters

    Hello everyone!
    Bit of background about the situation:
    A company needs to edit a PDF file as it is outdated, they tried copying directly from the PDF to word but as there is a lot of layout and info dependent on pictures that failed epicly. They asked if I could look into a way to get it properly into Word so they could easily edit it there.
    I used Acrobat XI to export it to Word, the layout and pictures all converted properly and the layout looked fine.
    The problem I am now running into is that in about a quarter of the document lines of text have converted into a mix of capital and normal letters, seemingly V,C,H,E,D,B,K are the biggest, and possibly only, problem, which sadly are used quite a lot in those few pages. The weird thing is that for the other 3 quarters of the document the same letters do not pose a problem and did convert properly.
    I could go the hard way around and change everything manually(Or use Search and Replace in Word) to get them correct but I figured I'd try here first to see if possibly there is an easy fix for this happening. I tried googling but didn't manage to find anything that fixed my situation or was similar to my situation.
    Opening the PDF in PDF-Xchange Editor showed the same problems I am getting in Word, so I am now thinking the problem may be with the PDF file and not the conversion.
    The font used is the same throughout the entire document, both the places with problems and no problems use "Frutiger" and get converted into "Trebuchet MS".
    A quick test(Not gonna stop trying things myself) shows that changing text from "Frutiger" to "Calibri" makes the problem areas work fine after conversion. Is there possibly an easy way to change all text in the file at once as selecting every bit of text is a bit of a pain.(To google!)
    The document contains info I may not share and thus I can't put it online for others to see and apply their hand at it directly.
    If anyone can offer any help with this it is much appreciated!

    Thanks for delivering the bad news, I found the most likely culprit while doing some last tests before manually changing everything.
    I changed everything to Calibri and that fixed most of the document, a few layouts were affected and 1 page was still broken(it had a lot of empty lines to fill in names etc.) but that is not a problem.
    The culprit, most likely, was the font "Frutiger" which when bolded apparently converts certain letters into capitals. Not 100% certain, but that seemed to be the case. I do not own said font myself so can't test it further, but changing the font fixed it well enough.

  • Table entries only with capital letters

    Hi
    I have created a table with some entries.One of these is type char length 65.My problem appears when i try to add entries to my table in this field,it will automatically transform them in capital letters.Even if i write with small letters,when saving,it will save my text with capital letters.How can i change this?
    thank you.

    Hi Seba,
    Make below change in the DOMAIN for that field
    Domain
    Defination Tab
    Tick Lower Case Checkbox of Output Characteristics..
    Use
    When this attribute is activated, you can enter both upper and lower
    case letters; conversion to upper case does not then take place. Use of
    this attribute only makes sense with character formats.
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Spell Checking Text with All Capital Letters

    Is it possible to change a spell check option in Adobe, like you can in MS Word, to include words in all capital letters? we have thousnads of documents that require all text to be all capitals and spend an appreciable amount of time spell checking by copying to MS Word to discover errors. No one I've talked to seems to have an answer.

    As I understand it the spell check in Acrobat is for text in annotations only.
    It does not check PDF page content..
    Such content needs to be spell/grammer checked before converting to PDF.
    Be well...

  • Capital letters problem

    Hello guys,
    A user yesterday reported that he couldn't get the list of his company when he tried to search with his company's first word in the search prompt(dashboard prompt)....
    The issue is he tried searching with small letters whereas his company names were stored in database in capital letters.
    Is there a way to fix this...or a workaround to restrict users to entering only in capital letters whether or not caps is ON on the keyboard.

    Hi,
    Please refer to below links for configuring case insesitive search:
    http://obiee101.blogspot.com/2009/02/obiee-configuring-case-insensitive.html
    OBIEE Prompts Case Sensitive
    http://shivabizint.wordpress.com/2009/04/20/case-insensitive-search-using-dashboard-prompt/
    Thanks

  • Edit PSA results in CAPITAL letters

    We import data from non-SAP systems and occasionally they contain erroneous data.  We edit the PSA to make the correction and then reload.  Unfortunately we have encountered a side-effect - the character string fields are all converted to capital letters (even though lowercase is allowed).
    Any suggestions on preventing this would be appreciated.
    Ian.

    Hi Ian,
    you can try the following in the start routine of your transfer rules:
    data: l_allowedchar type rsallowchar,
          l_allchar(200) type c,
          l_uppercase type syabcde,
          l_lowercase(26) type c,
          l_strlen type i,
          l_replchar type c value space,
          l_count type i,
          l_index type i.
    select single allowchar into l_allowchar
    from rsallowedchar.
    l_uppercase = sy-abcde.
    translate l_uppercase to upper case.
    l_lowercase = sy-abcde.
    translate l_lowercase to lower case.
    concatenate l_allowedchar l_uppercase l_lowercase '0123456789' into l_allchar.
    loop at datapak into l_s_datapak_line.
    l_index = sy-tabix.
    now, for each field you want to check
    if l_s_datapak_line-<field name> cn l_allchar.
    the field doesn't contain only allowed chars
    l_strlen = strlen(l_s_datapak_line-<field name>.
    l_count = 0.
    do l_strlen times.
    l_count = l_count + 1.
    if l_s_datapak_line-<field name>+l_count(1) na l_allchar.
      l_s_datapak_line-<field name>+l_count(1) = l_replchar.
    endif.
    enddo.
    endif.
    modify datapak from l_s_datapak_line index l_index.
    endloop.
    Please check it carefully, I was writing this just from memory without any abab syntax check ....
    But in general it will replace not allowed characters with space.
    Hope this helps!
    regards
    Siggi

Maybe you are looking for

  • Some photos don't appear in the blog's main page

    All the entries in my blog include a photo and almost always a small version of the picture appears in the blog's main page. Sometimes the small picture does not appear, although it shows up in the individual entry containing the photo. You can see w

  • Photoshop CS4 3d painting issues.

    Hello! I am using Photoshop CS4 Extended. I have imported a 3D image and am trying to paint onto it. I have watched a ton of videos and read a bunch of forums. Once I put even a dot of paint on my object, the whole 3D image is covered in paint. Does

  • Debug plug-ins in XCode on Mac?

    I'm a fairly seasoned plug-in developer on the Windows side (since Acrobat 4), and I know how do debug a plug-in in Visual Studio. I am now trying to debug a plug-in on the Mac with Acrobat 9. I remember that with previous Acrobat releases, I was abl

  • 1394 net adapter not working in device manager

    I,m running the KT4 Ultra  with fire wire on board with XP prof. Every thing is working fine except in device manager I have two listings for the 1394 net adapter.The first has the yellow explantion mark, Code ten."this device won't start. And the se

  • Solaris @ Compiz on a notebook with Intel 945GM

    I have successfully installed OpenSolaris nv91 on Fujitsu-Siemens Amilo Pi1505. Next I have enabled 3D effects, i.e. desktop on a cube and windows wobbling. It worked perfectly, but...the input from the keyboard has been blocked. In order to regain t