Is there a limitation of characters in a String variable in 8.0.2?

Is there a limitation of characters in a String variable?
I'm trying to create an email within my script and when I paste my text into my parameter, which is a String variable, it will only paste up to 80 characters (including spaces).
In 7.0 I was able to paste my paragraphs and the larges paragraph had 346 characters (including spaces).
Thanks,
Debbie

Greg,
Ah.... that's it. 
I modified the value of the parameter within the script and added the text that I needed. I added the following:
"To transfer the file over to the router's flash you will need an TFTP or FTP program.  Start your application and make sure that the default directory is pointed to the directory where you copied the greeting.  Now log into the router that needs to be updated.  Once you are in the router issue one of these commands:"
It accepted it and was able to use the entire value.  So it must be the web page that will not allow me to enter more then 40 characters.
Do I need to get this submitted as a bug?
Thank you,
Debbie

Similar Messages

  • Check whether there is any Special Characters in a String ?

    Hi All,
    I am having a very large String. I like to know how to check whether there is any special characters present in a string
    Thanks,
    J.Kathir

    I am having a very large String. I like to
    I like to know how to check whether there is any
    special characters present in a stringAll characters are special in a way. You shouldn't just single a few out because they don't look "normal" to you. Maybe they have golden hearts?

  • How do I know that there are double-byte characters in s String?

    Hi!
    If I have a String that contain English and Chinese words,
    How do I know that the String contain double-byte characters(Chinese words)?
    Following is my method and the problem I suffered...
    String A = "test(double-byte chinese)test";
    byte B[] = A.getBytes();
    if(A.length() != B.length)
    System.out.print("String contains double-byte words");
    else
    System.out.print("String does not contain double-byte words");
    If the String contains Chinese words,then A.length() will be smaller than B.length...
    I run the program on Window NT workstation(Tradtional Chinese version) and it works...
    Then I run the same program on Redhat 6.0(English version),
    but the result was not the same as running on NT...
    because A.length() always equal to B.length...
    I guess that's because of Charset of OS...
    But I don't know how to set the Charset of Linux...
    Does anybody have other solution to my problem?
    Any suggestion will be very appreciate!

    A String is always in Unicode. You cannot see what kind of character is in the string unless you compare with the Unicode range of charcters. E.g. 3400-4DB5 is CJKUnified Ideographs extension A. Then you at least know that is is not Latin-1 or other.
    Klint

  • How do you strip out certain groups of characters from a String variable

    for exapmle...
    String date = "11-Feb-2005";
    String day;
    String month;
    String year;
    how would you strip out '11' from date to assign it to 'day', and 'Feb' to assign it to 'month' and '2005' to assign it to 'year'.
    in my program the variable 'date' will always be in the format of:
    ist two digits are numbers followed by '-'
    then three digits (letters) followed by '-'
    then four digits that are numbers.
    i think it has something got to do with charAt or something, im not sure how to do it.
    any ideas?

    yea i tried the first method and it works fine.
    thanks very much.
    also... i tried the other one and it outputs... 11 1 2005
    which means it works but you see i wanted to put the date in the format of...
    Calendar date = new GregorianCalendar(2005, Calendar.FEBRUARY, 11); so i can compare it to another Calender object to see which one is earlier.
    that is why i am doing it like this...
    Calendar date = new GregorianCalendar(+ year + ", Calendar." + month + ", " + day);
    for example...
    Calendar xmas = new GregorianCalendar(1998, Calendar.DECEMBER, 25);
    Calendar newyears = new GregorianCalendar(1999, Calendar.JANUARY, 1);
    // Determine which is earlier
    boolean b = xmas.after(newyears); // false
    b = xmas.before(newyears); // true
    anyways i am just curious.

  • Maximum number of characters for a BPEL string variable

    Hi,
    What is the maximum numbers of characters that a string variable in BPEL process can hold??.
    Is there any document which describes the datatypes in BPEL.
    Regards
    V Kumar

    Trick question - with or without the use of the FM GUI?
    1. Via the FM interface to define a variable, FM will only save the first 1022 characters of your variable definition - if you dare try to enter that many via the GUI dialogue slot.
    2. Importing a variable via MIF, adds virtually any length - I've tested out 2510 characters. HOWEVER, FM will only display the first 1023 characters of this string.
    If you save the file to MIF, you can still see the original length of the variable. The other caveat is that if you touch any of these long variables via the FM GUI (Edit Variables), then FM will truncate it down to 1022 characters - regardless of how you save (binary or MIF).
    FWIW - Klaus Daube lists (see: http://daube.ch/docu/fmaker25.html ):
    Until FM 7.2: up to 255 characters including meta-notations (such as <Default ¶ Font> or \t - this counts as 16 resp. 2 characters). See also note Variables below
    From FM 8.0: up to 2023 Windows Codepage characters or up to 2022 UTF-8 characters
    I'd say that this is not quite correct. You could enter more than 255 prior to FM 7.2 as well, but again the display issue via the GUI kicked in and truncated down to 255. The newer versions only display 1022/1023 but you can enter more than 2510 characters (which in this case is futile anyway).

  • Is there any limitation on field size that can be defined in Idoc segments

    Hi all,
    I have extended a standard Idoc type and in my extended segment I have defined four fields GUID (char32), info1 (char255) , info2(char255) , info3(char255).
    This is a total of 797 bits which is well within EDIDD-sdata(char1000). But I am not able to put more than 132 characters in either info1, 2 or 3.
    Is there any limitation on this ?
    Regards
    Priyanka

    Hi Priyanka,
    I personally feel this error is not due to limitations but it might be due to the IDOC extension you had made and hence the default settings.
    Could you please try doing this -
    Note: Users require an authorization in order to carry out the procedure.
    The following correction is carried out with a fictitious attribute: 'info'.
    a) Call Transaction SE11.
    b) Enter the attribute name into the 'Domain' field, followed by '' (wildcard). For example: info
    c) The system displays the following hit list:
    info1
    info2
    info3
    d) Select the first domain and choose 'Change'
    e) Correct the number of characters. Forexample:
    Numberof characters   255
    f) Activate this domain
    Assign points in case this helps.
    Rgds
    Sum

  • How to find out if there are repeated characters in a string

    hey guys
    well i kinda have a little problem figuring out how to find out
    if there are repeated characters in a string.
    if anyone can help, would appreciate it.
    thanks
    milos

    Try using the StringTokenizer class. if u already know which character to trace. this could do the job.
    eg. String str = "here and there its everywhere";
    StringTokenizer st = new StringTokenizer(str, "e");
    int rep = st.countTokens();

  • Is there any limitation of memory uses for apps in iPad2 or iPad3 ?

    Hi,
       Is there any limitation of memory uses for apps in ipad2 or ipad3 .For example an application can use 10% or 20% of available memory , is there anything like that or the apps can use the total available memory or like 90% of it ?
    I want to know about the memory distribution to the apps in ios .
    Would anyone suggest a right way ?
    Thanks

    iOS manages all memory. You should test your app in Instruments to be sure it is playing nice.
    See Advanced Memory Management Programming Guide

  • Is there any limitation of devices for purchased content?

    Hi there,
    Is there any limitation of devices i can download content i purchased on itunes store?
    For example if i bought a movie or and album, to how many devices maximum i can download this movie (of course with the same APPLE ID)
    Thank you in advance

    iOS manages all memory. You should test your app in Instruments to be sure it is playing nice.
    See Advanced Memory Management Programming Guide

  • Is there any limitation

    Is there any limitation to number of parameters to be passed to a procedure (when submitted using htp post )
    Thanks,
    NPR

    I believe Oracle has a imit of like 32k parameters, but there shouldn't be anything beyond that imposed by the way you're calling the procedure.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Is there a function to check a list of characters in a string?

    is there a function to check a list of characters in a string?

    You need to create a vi. Find attached a vi that you can use. In the vi, if the number of match occurrence is zero, that indicates no match otherwise it will return the number of matches in the supply string. The vi is a modified version of Search String and Replace - General
    Attachments:
    Search_String_and_Count_Match.vi ‏17 KB

  • Is there any limitations to the maximum number of dimensions in MP?

    hi all
    Is there any limitations to the maximum number of dimensions can be created in Multi provider. If so how what is the maximum number of dimensions that can be created in a multi provider?
    regds
    haritha

    Hi,
    Maximum number of dimensions 16. Out of 16, 3 are system defined
    1.Datapacket
    2.Time
    3.Unit
    It is restricted to 16 because the maximum no of dimensions in any database is 16.
    Reward points if helpful
    Cheers
    Raj

  • Is there any limitation of nested select.

    Is there any limitation of nested select.If yes please let me know.

    Hi,
    There are no practical limits to nested SELECTs, but as other repliers have already pointed out they quickly become a performance hog. I have stopped using them for years, and when I teach ABAP performance classes I also quote them as one of the top "don'ts". With nested selects, the number of calls to the DBMS can easily become enormous, putting the database server under stress.
    A good alternative - the one I favour most myself - is to use SELECT INTO TABLE for the"outer" select, followed by appropriate SELECT FOR ALL ENTRIES statements to handle the inner levels.
    ABAP joins are another alternative. When properly written, a join will be faster than a nested select. The problem is however that very often joins are not properly written. SELECT statements should always respect the KISS principle (keep it simple, stupid) and with a join it is very easy to violate that rule. A join over 2 tables should probably be OK, but with 3 or more tables you want to be very careful. If you really want to code a complex join, I recommend that you also code the same logic with different means (INTO TABLE/FOR ALL ENTRIES or even nested selects) and then compare that with the join. By the way: don't just compare the performance, also make sure that the two return the same data. You wouldn't be the first to code a really fast join which unfortunately returns incorrect results.

  • Is there a limit of characters in the document JavaScripts window?

    Hi,
    I have several functions with huge arrays of data linked to a button field. All works fine if everything is declared in the document scripts and if the array is not too big. Once I try to insert a very huge array in the document script I receive the message "text is too large to be displayed in this dialogue". Why is so? Is there a limit of characters in the document script window?
    I am therefore trying to set up all arrays and functions in a separate javascript file and then embedded it into the 3d annotation. But when I do so,I loose the link to the button field action.
    As an example I have embedded in the 3d annotation:
    global.X= [[10,20,30,40],[5,15,25,35],[7,17,27,37]];
    function Update(n) {
         getAnnots3D(0)[0].activated = true;
         var a = global.X[0][n];
         var b = global.X[1][n];
         var c = global.X[2][n];
         var Mycamera = this.getAnnots3D(0)[0].context3D.scene.cameras.getByIndex(0);
         Mycamera.position.set(a,b,c);
         camera_1.roll = 0;
    and then I add in the button field Mouse Up action:
    Update(3);
    but nothing happens (while if the same script is in the document level script it works). I am probably missing the link between the embedded function and the button field? (either at host/doc/app level..)
    many thanks for the help!

    Your script contexts are messed up.
    That script is expecting to be run at the document level because it's collecting a reference to the 3D API (via getAnnots3D). You also have an undeclared variable (camera_1).
    If you want it to work as a 3D embedded script (not sure why) then you will need to remove the reference to "getAnnots3D.context3D" from the function, so you'd simply say
    var Mycamera = .scene.cameras.getByIndex(0);
    There's no point in using the first line of the function to activate the API, as the function wouldn't exist until it was active.
    Your button will then need to target the function with a reference, so it'd be getAnnots3D(0)[0].context3D.Update(3); (you will also want to put the activation command on the button's event)

  • Are there any limitations in the Student Edition

    Hi,
    I just purchased the Student Adobe Creative Cloud. Are there any limitations? Also, can I put this on both of my personal computers, or just one? Thanks!

    Hi Anuj,
    You can install the application on 2 machines with 1 license.
    Regards,
    Sheena

Maybe you are looking for

  • How to connect my iMac 27" to a beamer?

    Hey there Is it right that i need a VGA to USB Cable to connect my iMac 27" with a Beamer. I see the beamer is VGA and my iMac has no other compatible inputs, so i think its VGA to USB. But i don't no if it works THX for any help!! hn*

  • Can you have more than one version of Premiere Elements on one computer

    I have an Apple iMac 2.5GHz Intel Core i5, 8 GB Memory running OSX 10.7.5. I currently have Adobe Premiere Elements 9 installed and just purchased Premiere 11. I know they changed a lot on the new version and want to make sure it performs well on thi

  • DW CS6: Extra empty blank line in code view causing trouble!

    Hi all, I searched for hours for a solution to the following problem, without any success. When coding in Dreamweaver CS6 (Version 12.0, Windows 8.1), an extra non-editable blank line is automatically added at the bottom of the document (in code-view

  • Error while activating any object

    Hi Everyone, I m have strange problem with bi sever. When ever i try to activate any object in system goes in debugging mode. Can any one tell y dis happening. did i activated some setting ??? /sachinkumar.

  • DAX Calculation shows incorrect results when driven from Time Slicer

    Hi, We have defined a DAX quarter on quarter calculation   PREV Q % 13F:=divide([PREV Q ABS 13F],[Prior Quarter 13F]) Prior Quarter 13F:=CALCULATE(sum([TotalValue]), DATEADD(Time[Date], -1, QUARTER)) PREV Q ABS 13f:=CALCULATE(sum([TotalValue]))-[Prio