How to convert lowercase to uppercase characters?

Hi!
I am a newbie to LiveCycle; I have created a form but I want all characters in the field to automatically be converted to uppercase, regardless of the input.
Thanks
Jofar1

Thanks Paul.
How do I get the "exit event" option?

Similar Messages

  • How to convert string to 16 characters.

    My external unique id is too long, more then 30 characters.
    How to convert it to 30 characters using sql?

    You should find another extranal system id in order to mantain uniqueness, but you could also use the name field (that supports 50 characters), but it deppends of which entity you are using.
    Which is the entity? and...if the only way to insert data is by web services the you could use more than one field to verify uniqueness since you can query more than one field at the time.
    Hope it helps
    Kim.

  • How auto turn lowercase to uppercase in input-field?

    Hi All,
    How auto turn lowercase to uppercase in input-field?
    Thanks
    Smile

    The way I implemented it was using a javascript function to change the case by calling the javascript function from the textfield tag with onblur event. Here is the javascript code and how it was called:
    enter the following code within your with the head tag
    <script>
    function case_checker(){
    var st = document.getElementById("form1:[Enter the textfield ID here]").value;
    document.getElementById("form1:[Enter the textfield ID here]").").value = st.toUpperCase();
    </script>
    call the code from the textfield tag has follow:
    <ui:textField binding="text" id="[Textfielf ID]" onBlur="case_checker(')" style="border-style: inset; border-color: #000000; left: 216px; top: 144px; position: absolute; width: 144px"/>

  • Convert lowercase to uppercase while typing

    Hi,  I want to convert lowercase letters the user types in a textfield to uppercase on keyrelease.
    Right now, i am able to do it by adding the following  code on HTML Form Element Attributes for the textfiled.
    onKeyUp="this.value = this.value.toUpperCase()"
    Since, there are many textfields on my page it is pain to add on all the fileds one by one.
    Is there a way that I can do it once and it applies for the entire page?
    thanks,

    Hi,
    Enter to page JavaScript -> Execute when Page Loads
    $("input[type=text]").keyup(function(){
    this.value = this.value.toUpperCase();
    Regards,
    Jari

  • : how to convert string into uppercase string in java

    iam having string in lower case i need to convert it to uppercase using java.please help me

    s = s.toUpperCase ();See http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html.

  • Convert lowercase to uppercase in routine

    HI all,
             I have records in data source in this format  '10-Jan'. I try to pass this record to my target(DSO) it is not displaying.
    10-Jan  J in upper case and remaining in lower case. i have to write routine? then how to write routine fo this?
    Note:
    I have created info object for that target field data type CHAR  and SIZE 10.
    Regards
    R.saravanan

    I wonder what you would do with the data stored as a CHAR.
    Since you are planning to write some routine, why dont you convert this text (if it corresponds entirely to periods in this format) to a NUMC 6 or 7 type field and use it to show as a period in your reports.
    I believe it might make more sense, although my suggestion lacks vital requirement stats that goes behind this question you asked.
    -Aby

  • How to convert from lowercase letters to uppercase letters?

    how to convert from lowercase letters to uppercase letters?

    Hi KS,
    In the transfer / update rules you can use a formula to convert lowercase to upper case letters.
    Functions for Character string>>TOUPPER(CHAR)
    Hope this helps.
    Bhargava
    Message was edited by:
            Sista Bhargava Kumar

  • How to convert special characters in ABAP to XML?

    Hi All.
    We have a scenario where from XI (exchange Infrastructure), a BAPI is called which returns an XML. From that XML, a PDF is generated.
    Now, if the XML contains any special characters, it will fail.
    So if any CHinese char or >, # etc signs are there, it fails.
    Can you please tell me how to convert my string in ABAP to a proper XML?
    I am new to it and I was trying the following code
    DATA: today TYPE string,
          result TYPE string.
    today = 'This is testing'.
    CALL TRANSFORMATION ID
         SOURCE today = today
         RESULT XML result.
    IF sy-subrc = 0.
      WRITE result.
    ENDIF.
    But it does not return me anything.
    Thanks in adv.

    hi
    good
    go through these links,hope these would help you to solve your problem
    http://www.sap-press.de/download/dateien/792/sappress_abapreference_2edition.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c2567f2b-0b01-0010-b7b5-977cbf80665d
    thanks
    mrutyun^

  • How to change from lowercase to uppercase in Pages for iPad

    First: hello!
    Basically I got a new iPad and I'm using Pages for some document creation but i can't find how to change the text i selected from lowercase to uppercase, in MacOSX is in the Font Menu but I can't find it in Pages anyone knows how to do this?

    Generally, you are more likely to get an answer if you post in the iWork for iOS forum at
    https://discussions.apple.com/community/app_store/iwork_for_ios
     Cheers, Tom 

  • How can i change my notes from lowercase to uppercase in the inbuilt ipad notes app?, how can i change my notes from lowercase to uppercase in the inbuilt ipad notes app?

    how can i change my notes from lowercase to uppercase in the inbuilt ipad notes app?, how can i change my notes from lowercase to uppercase in the inbuilt ipad notes app?

    once they are written you can't but on a new note while your typing you can turn on CAPS LOCKS

  • 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

  • How to make editable JComboBox uppercase

    Can some one tell me how to convert user entry in to a editble JComboBox to Uppercase?.
    Thanks.

    Here is some initial code as an example to do what you want. You will see the inital problem with it when you start typing some characters into the JComboBox. Maybee you will figure it out before I do but this is a great challenge. I figure if there is some way to override java placing the character into the box then this would work with little modification.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Test {
      private JComboBox comboBox;
      public Test() {
        JFrame mainWin = new JFrame();
        Container main = mainWin.getContentPane();
        comboBox = new JComboBox();
        comboBox.getEditor().getEditorComponent().addKeyListener( new UpperCaseKeyListener() );
        comboBox.setEditable( true );
        main.setLayout( new FlowLayout() );
        main.add( comboBox );
        mainWin.pack();
        mainWin.show();
      public class UpperCaseKeyListener implements KeyListener {
        public void keyTyped( KeyEvent e ) {
          JTextField textField = (JTextField) comboBox.getEditor().getEditorComponent();
          String text = textField.getText();
          textField.setText( text.toUpperCase() );
        public void keyPressed( KeyEvent e ) {
        public void keyReleased( KeyEvent e ) {
      public static void main( String args[] ) {
        new Test();
    }

  • How to send non-latin unicode characters from Flex application to a web service?

    Hi,
    I am creating an XML containing data entered by user into a TextInput. The XML is sent then to HTTPService.
    I've tried this
    var xml : XML = <title>{_title}</title>;
    and this
    var xml : XML = new XML("<title>" + _title + "</title>");
    _title variable is filled with string taken from TextInput.
    When user enters non-latin characters (e.g. russian) the web service responds that XML contains characters that are not UTF-8.
    I run a sniffer and found that non-printable characters are sent to the web service like
    <title>����</title>
    How can I encode non-latin characters to UTF-8?
    I have an idea to use ByteArray and pair of functions readMultiByte / writeMultiByte (to write in current character set and read UTF-8) but I need to determine the current character set Flex (or TextInput) is using.
    Can anyone help convert the characters?
    Thanks in advance,
    best regards,
    Sergey.

    Found tha answer myself: set System.useCodePage to false

  • How to convert Chineese script O/P into PDF?

    Hi,
    I have a requirement like "Irrespective of login language i need to send both english as well as chineese PDF's to multiple recepients.I m using CONVERT_OTF FM to do so.So when i login into EN and run the script english PDF comes fine but in chineese PDF i m getting chineese Descriptions as junk values.
    I am providing a piece of code.
        CALL FUNCTION 'CLOSE_FORM'
             TABLES
                  otfdata = tb_otf
             EXCEPTIONS
                  OTHERS  = 1.
    I am not using spool concept instead i m taking the script output into tb_otf while closing the script o/p.
    Then i am calling FM CONVERT_OTF to convert that tb_otf into PDF format.
    So how can i avoid those chineese characters coming as junk values.
    will CONVERT_OTF work for other languages because inside the FM there is a statement  "cur_system_lang = SY-LANGU." In  my case sy-lang will be either EN or Chineese.
    Kindly provide some solution.
    Thanks in advance,
    Rithwika

    I got the solution to my question

  • How to convert bits into a character

    The code which i could get from this forum is specified below which converts a String into Bits.......i could successfully use this code in BitStuffing method for client side.....at server side i need to convert these bits into characters again.........
    class StringBits
    String str="This is a string";
    char ch[]=str.toCharArray();
    for(int i=0;i<ch.length;i++)
    System.out.printl(Integer.toBinaryString(ch));
    In this code each character is converted into its binary bits form.........now my problem is how to do it function the reverse way......i dont even know the return type of the method Integer.toBinaryString(char ch)..........
    please anyone let me know...which method to use to convert given binarycode into characters..........
    i.e if i have 0111100 how do i convert these bits into character again....
    thanks in advance
    Deepika

    1. Can't you do this by sending whole bytes instead of bits? It would make everything a lot easier.
    2. The solution you have probably is not going to work as is, since Integer.toBinaryString does not pad with 0's. If you have to have the bits, you should do something like:
    String s = ...
    byte bytes[] = s.getByteArray();
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < i bytes.length; i++) {
      int bit = 2;
      while (bit < 256) {
         sb.append(bytes[i] % bit);
         bit *=2;
    }This is of course little-endian, so be aware of that when translating on the other side

Maybe you are looking for