750 character Text field in ICWebclient

Hi All,
I have to add one 750 character Text field to ICWebclient front end, for that I have added textEdit field on the front end and at the backend I am saving the 750 character text in three parts each of 250 char. It's working fine for the text upto 250 char, but I am getting Error on the front end when the text size is >250 char.
Description of the error (on the front end) :
<field name>:input
Can any one please tell me the solution for this issue?
Thanks in Advance.
Regards,
Amit

Hi SAP experts,
Can anybody try to help with a very complex issue in FB03 documents?
In SAP the documents shows Line Item Text with a simple description, for example:
LINE ITEM TEXT: VENDOR US#34 INVOICE
When the job scheduling team runs an interface that gathers all the FB03 documents to be sent to another legacy, it generates very big TXT files of accounting documents.
When you open the TXT file, the text :
VENDOR US#34 INVOICE
is transformed into :
VENDOR USÂ@34 INVOICE
Which means # is transformed into special characters making failure in the load in the Legacy.
This happens when text contains # - ´ ##
Can anybody shed any light as to why TXT transforms the original text into special characters?
Regards
Rogerio

Similar Messages

  • Is it possible to add in a 250 character text field to report

    Hi Guys,
    I am loading a BI ODS from an external datasource via a csv file.
    the issue I have is that one of the fields that I want to load to the ODS is 250 characters long, the maximum length of a character is 60 length right?
    What are my options or is there any way of showing this big 250 character field.
    Thanks,

    Hi
    I know this is not you're asking but, if I were you I rather question the request; what are the reporting requirements? Even if it's technically possible to create a char 250 infoobject, how would you display in BEx, it won't fit the screen with key figures & keys. Also you can't possibly use this as nav attribute, unless you have a google type search that you can use wild chars! - i assume it will be a free format text. And if it's a free format text, you can't use it to make intelligent/statistical decisions, can't create exception reports/alerts etc.
    Cheers
    Tansu

  • How to validate for non-english character on a single line text field

    In a "Single Line Text" field we would like to allow the users to enter alpha numeric values only. We should show error when the user enter non-English values like
    carácter
    Vijayaragavan, MCTS

    Hi,
    According to your post, my understanding is that you wanted to validate for non-english character on a single line text field.
    I recommend to use jQuery to attach regular expression validation. Please refer to:
    Using #jQuery to attach regular expression validation to a #SharePoint list form field
    In addition, for custom validations you can create your own Types. Refer to
    this[^] for creating custom field type
    More information:
    SharePoint Custom Field - Regex Validator
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Add a character to end of text field

    I'm looking for a script that will add a character to the end of all text fields in a document. Or one that adds it to a single text field that I could add to all my text fields.
    The reason is that our end client will be copying and pasting text from the PDF and entering it into another system and it needs to maintain the line breaks at the end of the line. We thought this would be the safest route as it eliminates the potential for human error if someone doesn't enter it manually.
    I was playing around with fieldFull commands but can't seem to get anything to work. I thought something like…
    if(event.fieldFull) { getField(myfieldname).value = ":\n" }
    but that's not working at all; mostly due to my lack of programming expertise, I'm sure. Any help would be awesome.

    Thanks for the quick response. That's a great question that I don't really have an answer for from a requirements stand point.
    What we have is an end-user tool that only allows a certain amount of characters per line and only a certain amount of lines. So we're faking some of this by having a single text field represent a single line with a character counter set on it and a max character limit set as well. Then theres a script running that focuses you to the next field as you've filled out each one. We just want to make sure that at the very end there's a hard return added to every line (text field) so when our client copies and pastes this it holds the formatting. Make sense?
    I guess whatever would be easiest is my best response to you. Maybe when they exit the field would make sense?

  • 1000 CHARACTER TEXT IN ALV FIELD

    Hi Experts,
    I have a String type variable containing 1000 character text that I am passing in a field on ALV. But ALV field can display on 132 characters. So now my requirement is that when a user double clicks on that field... then a popup or a screen appears where the user can read the entire text of that field.
    I have tried some FMs (like POPUP_TO_CONFIRM, POPUP_TO_INFORM, POPUP_DISPLAY_TEXT etc...), but all have length restriction.
    Please suggest if there is any FM to get the entire 1000 character text on a popup....  OR if there is any other way to do this...
    Thanks in advance
    Regards,
    Ashish Goyal

    I am using this code provided by you, facing error : Field "OB_GUI_DIALOGBOX_CONTAINER" is unknown. It is neither in one of   the specified tables nor defined by a "DATA" statement. 
    Please take a look and suggest.
    Using REUSE ALV GRID to display ALV.
       TYPES: BEGIN OF tp_text_x .
    TYPES: tdname      TYPE thead-tdname ,
           tdobject    TYPE thead-tdobject ,
           tdid        TYPE thead-tdid ,
           tdspras     TYPE thead-tdspras ,
           tdtxtlines  TYPE thead-tdtxtlines .
    TYPES: tdline      TYPE tline-tdline ,
           it_tline    TYPE tline_tab .
    TYPES: END OF tp_text_x .
    CLASS cl_event_reciever DEFINITION DEFERRED.
    DATA v_event_reciever TYPE REF TO cl_event_reciever.
    CLASS cl_event_receiver DEFINITION .
      PRIVATE SECTION.
        METHODS: close
                 FOR EVENT close OF cl_gui_dialogbox_container
                 IMPORTING sender.
        METHODS: init_container .
        METHODS: display_textedit
                 IMPORTING value(st_text_x) TYPE tp_text_x .
    ENDCLASS .                    "cl_event_receiver DEFINITION
    CLASS cl_event_receiver IMPLEMENTATION.
      METHOD close .
        CALL METHOD sender->set_visible
          EXPORTING
            visible = abap_false.
      ENDMETHOD .                    "handle_close
      METHOD init_container .
    *    DATA: ob_gui_dialogbox_container TYPE REF TO cl_gui_dialogbox_container.
        IF ob_gui_dialogbox_container IS NOT INITIAL .
    *    IF EDITOR_CONTAINER IS NOT INITIAL .
          me->close( EXPORTING sender =  ob_gui_dialogbox_container ) .   " EDITOR_CONTAINER ).
        ENDIF .
        CREATE OBJECT ob_gui_dialogbox_container
          EXPORTING
            parent   = cl_gui_container=>screen0
            top      = 40
            left     = 200
            lifetime = cntl_lifetime_dynpro
            width    = 600
            height   = 100.
      ENDMETHOD.                    "init_container
      METHOD display_textedit .
        me->init_container( ) .
        DATA: ob_gui_textedit TYPE REF TO cl_gui_textedit .
    *    DATA: ob_gui_dialogbox_container TYPE REF TO cl_gui_dialogbox_container.
        CREATE OBJECT ob_gui_textedit
          EXPORTING
            parent = ob_gui_dialogbox_container.
        CALL METHOD ob_gui_textedit->set_readonly_mode
          EXPORTING
            readonly_mode = cl_gui_textedit=>true.
        DATA: it_tdline TYPE TABLE OF tdline .
        DATA: st_tdline LIKE LINE OF it_tdline .
        FIELD-SYMBOLS: <st_tline> LIKE LINE OF st_text_x-it_tline .
        LOOP AT st_text_x-it_tline ASSIGNING <st_tline> .
          APPEND <st_tline>-tdline TO it_tdline .
        ENDLOOP .
        CALL METHOD ob_gui_textedit->set_text_as_stream
          EXPORTING
            text = it_tdline.
      ENDMETHOD.                    "display_textedit
    ENDCLASS .                    "cl_event_receiver IMPLEMENTATION
    INITIALIZATION.
    CREATE OBJECT v_event_reciever.
    DATA: ob_gui_dialogbox_container TYPE REF TO cl_gui_dialogbox_container.
    CREATE OBJECT ob_gui_dialogbox_container.
    START-OF-SELECTION.
    v_event_reciever->display_textedit( EXPORTING st_text_x = <st_alv_data_1>-text_1 ) .

  • Franch font (character) in  text field  OraReports

    I'm from Croatia and I have a problem to create in Oracle Reports 6i, text field in which we have the sign character of the French language:
    Ä  ê  ï  à - examp
    Does anyone have a solution?
    Please note that this is a text field, not data from the database.
    Since I'm new to OraReport, please be understandable and applicable explanation.
    Thanks

    Scott,
    Instead of re-create what I have onto apex.oracle.com, here is ATD's similar example that I am trying to do:
    http://apex.oracle.com/pls/otn/f?p=56976:1, My case is similar to his mutiple values.
    But instead of following his example, I had already done it in this way:
    Use select list with submit, invoke after submit process to populate the display fields. But the submit blanks out those newly entered data, therefore I set all values in the branch after submit.
    I would like to following ATD's example, but I have two questions:
    1. What type of select list is it?
    2. GetElementsByTagName("ENAME"), is ENAME the label of a column?
    Thanks,
    Yivon

  • Setting Character Limits or Font Size in Text Fields In Forms

    Hi everyone.  I've created a form but the problem is that people are changing the font size in order to fit mrore into the locked text fields.  I want to create either a chaacter limit or lock the font size as to prevent people from changing around the forms.
    Thanks for your help.

    ^^ In the instructions?  Or is there a way to do that in Acrobat?

  • Character & in text field or textarea

    In a page, I have '&' in text field/textarea. I also have select list with submit. When select list changes value, the submit invokes a branch, which I set the values of the text field/text area to itself to avoid values disappear before applying changes.
    If the text field/textarea has & sign in there, every time if I change value in the select list, it adds 'amp;' right after '&'. How do I avoid that?
    Thanks,
    Yivon

    Scott,
    Instead of re-create what I have onto apex.oracle.com, here is ATD's similar example that I am trying to do:
    http://apex.oracle.com/pls/otn/f?p=56976:1, My case is similar to his mutiple values.
    But instead of following his example, I had already done it in this way:
    Use select list with submit, invoke after submit process to populate the display fields. But the submit blanks out those newly entered data, therefore I set all values in the branch after submit.
    I would like to following ATD's example, but I have two questions:
    1. What type of select list is it?
    2. GetElementsByTagName("ENAME"), is ENAME the label of a column?
    Thanks,
    Yivon

  • Change the font color of a text field in a table by key-combination

    I want to change the font color of a text field in a table (single cell only) on pressing a key combination. Does anybody know how to do this.
    I have a lot of data in a table. During an evaluation of the data in a meeting I want to change the color of the text depending on the result of the meeting. (for example: High risk = CTRL+R makes the text red).
    I know how to change the color using a button, but I do not want to add a button after each cell. For this reason I would like to do it on a key combination that alway refers to the active cell.
    Many thanks for your help in advance.
    Marcel

    Hi,
    I don't think you can use the ctrl key like that as those shortcuts will be intercepted by Reader (ctrl-R toggles the ruler display on / off).  You also might have trouble updating the color while you still have focus on it.  You can use the shift key in a similar way, so if you only have lower case characters in the text fields then you can do something like;
    if (xfa.event.shift)
        switch (xfa.event.change)
            case "R":
                this.fontColor = "255,0,0";
                break;
            case "O":
                this.fontColor = "255,102,0";
                break;
            case "G":
                this.fontColor = "0,255,0";
                break;
        xfa.event.change = ""; // ignore character
    If you need uppercase characters maybe you can have one button to set "review mode" and test that on the if (xfa.event.shift) line.  But again it wont take effect until you have tabbed out of the field.
    Regards
    Bruce

  • Expanding text fields

    I have inserted text fields, but they only allow a one line response. I was told to go to text fields, then format, then word wrap and then to put in total characters, but can't find any of those options. I was also told not to upload a pdf file to forms, but when i tried my document in word doc format it wouldn't let me select it to upload. I can make the fields in the pdf version, but none of these options appear. How do i set up text fields that allow for long answers, or alternatively, is there a way to make a pdf writable to someone can fill out a questionnaire?

    If you asking about a text field that you create in Acrobat, you need to bring up the text field properties dialog and select the Options tab, and select the Multiline option. You can specify a character limit, but you don't have to. If you select the "Scroll long text option, the user will be able to input more text than can be displayed in the field at one time.

  • Dynamic Text Field is not displaying foreign characters... HELP!

    I have a dynamic text field that is not displaying foreign characters properly. They appear as boxes.
    Here's what I've tried.
    Under properties for the text field, I clicked on the embed characters button. In there, I pasted all the special characters I would need and clicked okay. Shouldn't this be enough for the text to display properly? What am I missing? Please help...

    More info: I'm noticing that in the actual dynamic text field in my .FLA file, if I type a foreign character like é, it pops up as a block. My family font is set to New Caledonia... is it possible that New Caledonia doesn't have those particular glyphs? The thing that doesn't make sense to me though is, last year when I made this card, it worked fine with New Caledonia... Any help is greatly appreciated!!

  • Search and Replace values in the text field before values are stored to DB

    Hi,
    In my application there is a question - text area and answer - text field. Problem is, some answers are stored with the single quotes to the DB and I have a problem while retrieving it from the DB. I need to replace the 1 single quotes with 2 single quotes. The values are stored to the DB when the submit button is clicked.
    So I am using the following javascript code:
    italics
    <script type="text/javascript">
    function test()
    var str="&P2_S1.";
    document.write(escape(str));
    </script>
    italics
    I need to call this javascript function, when the submit button is clicked but BEFORE the values are stored to the DB. How can i get this done?
    Please let me know.

    Hi,
    Thanks for the reply.
    Yeah I planned to drop the Javascript idea.
    Now, I am using the PL/SQL code. This is what I am planning to do.
    When the user enters any word like this, Test's, this single quote should be replaced by some special character, #@@#, - what is the PL/SQL code for this?
    Right now my PL/SQL code is:
    begin
    update test set S1=:P2_S1 where name=:APP_USER;
    end;
    so the replacing part should come somewhere before the update statement.... how can I do it?
    from the DB when the values are retrieved, I use the following code:
    select REPLACE(s1,'''','') from test where NAME=:APP_USER; // this works fine.
    Please help me with the replace of the single quote before the update process...

  • How to use the separate symbol in the text field in the adobe form.

    Hi,experts,
    I don’t know how to use the separate symbol to make a paragraph separate into several lines correctly in the text field in the adobe form.
    Action:
    1. config the ADS successfully.
    2. create the adobe form with a mult-line textfield(binding the 'remark' context in the interface of the form) using sfp.
    3. create a WDA for invoke the form and transfer the 'remark' context data.
    I use the following codes to display the paragraph in the PDF document:
    CONCATENATE
    '1&#12289;aaaaaaaaaaa&#65307;'
    '2&#12289;bbbbbbbbb '
    '3&#12289;ccccccccccc'
    '4&#12289;ddddddddd'
    INTO remark .
    lo_nd_z_hr_php_payslip->set_attribute(
    EXPORTING
    name = `REMARK`
    value = remark ).
    But I found all the content aren't paragraph separate correctly in the text field in the adobe form when I run the WDA.
    Could you please give me some hints to make the paragraph separate correctly in PDF document? Thanks a lot in advance!
    My email is : [email protected]
    Best regards,
    Tao
    Edited by: wang tao on Apr 8, 2008 1:58 AM

    Hi,
    If it is just a one word value then you could use this in the exist event;
    this.rawValue    
    = util.printx(">?<*",this.rawValue);
    This changes the first character (represented by the ?) to uppercase (represented by the >) and all trailing characters (represented by the *) to lowercase (represented by the <).
    If you wanted something more general ... if they could also enter a middle name then you could call a function like;
    function        toTitleCase(textValue)
      return  textValue.toLowerCase().replace(/\b[a-z]/g, function replacer(match) { return match.toUpperCase(); });
    This uses a regex to change all lowercase letters following a word boundary to uppercase.
    Bruce

  • How do I embed multiple font outlines in dynamic text field

    Can anyone tell me how I can embed multiple font outlines in
    Flash MX so I can get smooth text in a dynamic
    text frame? I want to use Regular, bold and italic in various
    parts of the text.
    I was using the Character button in the properties manager
    and tried to include all Characters. That does not work.
    In the Properties manager I can choose Bold and/or Italic.
    But it becomes a universal setting that overrides my HTML tags in
    my external txt file that I am importing. I dont want all my text
    to be bold.
    If I dont select them in the properties, however, Flash will
    not embed the font that it needs.
    Is there a different way to embed fonts other than under the
    Character Tab?
    I tried to import fonts to the library, but can not select
    them.
    Your help would really be appreciated.
    Sincerely,
    ggaarde

    ggaarde wrote:
    > Thanks Urami
    > Tried your method and it does not work for me.
    > I put 3 dynamic text fields in the first frame of the
    movie. Set them up to
    > where one is regular, one is bold and one is italic
    Helvetica.
    Weird, it works for me on first go, always had in fact :)
    Show you an example, try to compare to your file see if you
    missed anything accidentally.
    http://flashfugitive.com/stuff/font/text.swf
    text file
    http://flashfugitive.com/stuff/font/text.txt
    fla
    http://flashfugitive.com/stuff/font/text.fla
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Adding Start and Stop characters to a text field???

    "For 1D bar codes, there are two options depending on the type of PDF form you want to use. Forms that you create in Acrobat (acroforms) can be set up to use a bar code font with a standard text field. If you want to include the standard start and stop character (*) and/or a check character, you can use JavaScript to add them. The check character would have to be calculated, but that can be easily done with JavaScript."
    How would i go about doing this. My current PDF form will pull a last name and first name onto the form in a Barcode format, but i need to add in *LNM to the start and another * at the end of the data that was pulled from a SQL data base.  example the pdf has a Text Feild named "borrower1_last_name" and that filed pulls the last name..  So i was thinking there should be an easy script like you said to add in to that feild properties.
    posting here now, becasue no one seems to be able to point me to the correct resourse on the reader forum.

    okay.. so now how do I change the space between the first name and middle inital (and even the last name) in that same field?
    something like this looks like it should work but doesnt seem to do anything.
    str.replace(/ /g, "_");
    // Add an asterisk to the beginning and end of the value
    if (event.value) event.value = "*FNM" + event.value + "*";
    //Replace black spaces with an Underscore
    str.replace(/ /g, "_");

Maybe you are looking for

  • How many computers can you Download lightroom on

    Wondering about the number of computer i can download on

  • Problem connecting ipod photo 30gb to sony dsc w1

    hi, i'm having trouble using my ipod camera connector, the camera and ipod can't connect to each other,(no detection), I tried to update the ipod, that has the 1.0 version to the 1.2, it works fine on the computer but the ipod still remains at 1.0. t

  • Replacing Snow Leopard with Leopard in a new iMac

    Hello people, I intend to get a new iMac, but I'd like to replace the Snow Leopard OS with the Leopard of my present Mac (because it supports a number of my PPC applications). I presume I will simply have to do an "Erase and Install" of Snow Leopard

  • Changes made in Lightroom3 don't print

    Sometimes, the edits made in LR 3 are not applied when I print.  They also do not show correctly if I choose them as the desktop background accuratly (afterexporting it as a jpg file). The photo is colorful but my desktop is not! I've exported a numb

  • How to desible guest user on lion?

    when i installed the new version of Lion, a guest account appeared on the beginning of session. How to disable it?