More than 3 string column unlimited text

hi ,
i have a requirement in which i have 15 unlimited text fields in UI . I need to save the 15 unlimited text fields data to be stored in a table . when i try to create a table with more than 3 column of type string i get an error says can not create column more than 3 of type string . is their a work around or how we handle in abap.
thank you ,
chandra.

I would also suggest using the standard text to store the texts that you have. Take a look at the weblog for a implementation of the same..
/people/igor.barbaric/blog/2005/06/06/the-standard-text-editor-oo-abap-cfw-class
You can look at these texts in SO10 transaction
Regards,
Ravi
Note - Please mark all the helpful answers

Similar Messages

  • More than 160 characters in each text message

    I don't get why Verizon made the switch for every other phone to be able to text more than 160 characters, but not for blackberrys.....

    BlackBerry Messenger has more than 160 characters. Unlimited, maybe??? On my BB, two or three texts in a row show all together like one text. Do yourself and others a favor and either learn some texting shorthand, or learn how to get to the point. long texts are very annoying. SMS stands for Short Messaging Service. I try to remember that when I text. In my personal experience, I say wat too much whenever I send long texts. And once its sent, there's no taking it back!

  • More than one SDO_GEOMETRY columns in one Oracle 8i spatial table

    I have a spatial table as follows:
    CREATE TABLE TEST(
    ID VARCHAR2(255) NOT NULL,
    POINT MDSYS.SDO_GEOMETRY,
    LINE MDSYS.SDO_GEOMETRY,
    POLYGON MDSYS.SDO_GEOMETRY,
    PRIMARY KEY(ID));
    Is it a good practice to have more than one SDO_GEOMETRY columns
    in one spatial table? What are the drawbacks if any to have a
    spatial with more than one layer?

    I have one question about more than one SDO_GEOMETRY columns
    in one table in Oracle 8.1.7. When I wanted to create two
    spatial indices for this table, every time I got some error.
    Can anyone tell me how to figure it out?
    Thanks very much,
    Fan Fan,
    You need to insert metadata record before creating spatial
    indices.
    Try the following:
    REM USER_SDO_GEOM_METADATA :
    REM insert a row for the geom layer for TEST TEST2 tables
    REM
    INSERT INTO USER_SDO_GEOM_METADATA
    ( TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES ('TEST', 'POINT', MDSYS.SDO_DIM_ARRAY
    (MDSYS.SDO_DIM_ELEMENT('LON', -180,
    180, .000005),MDSYS.SDO_DIM_ELEMENT('LAT', -90, 90, .000005)),
    NULL);
    INSERT INTO USER_SDO_GEOM_METADATA
    ( TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES ('TEST', 'LINE', MDSYS.SDO_DIM_ARRAY
    (MDSYS.SDO_DIM_ELEMENT('LON', -180,
    180, .000005),MDSYS.SDO_DIM_ELEMENT('LAT', -90, 90, .000005)),
    NULL);
    INSERT INTO USER_SDO_GEOM_METADATA
    ( TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES ('TEST', 'POLYGON', MDSYS.SDO_DIM_ARRAY
    (MDSYS.SDO_DIM_ELEMENT('LON', -180,
    180, .000005),MDSYS.SDO_DIM_ELEMENT('LAT', -90, 90, .000005)),
    NULL);
    REM create a spatial index based on TRAFFIC.GEOM
    REM
    REM
    CREATE INDEX TEST_G_POINT_IDX ON TEST(POINT) INDEXTYPE IS
    MDSYS.SPATIAL_INDEX;
    CREATE INDEX TEST_G_LINE_IDX ON TEST(LINE) INDEXTYPE IS
    MDSYS.SPATIAL_INDEX;
    CREATE INDEX TEST_G_POLYGON_IDX ON TEST(POLYGON) INDEXTYPE IS
    MDSYS.SPATIAL_INDEX;

  • Spatial index creation for table with more than one geometry columns?

    I have table with more than one geometry columns.
    I'v added in user_sdo_geom_metadata table record for every column in the table.
    When I try to create spatial indexes over geometry columns in the table - i get error message:
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13203: failed to read USER_SDO_GEOM_METADATA table
    ORA-13203: failed to read USER_SDO_GEOM_METADATA table
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 8
    ORA-06512: at line 1
    What is the the solution?

    I'v got errors in my user_sdo_geom_metadata.
    The problem does not exists!

  • How to return more than one string?

    Hi,below is my code:
    @WebMethod(operationName = "CheckBooking")
    public String CheckBooking(@WebParam(name = "ID")
    String ID) {
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:Flight");
    // Statement stmt = con.createStatement();
    String b="Select Destination, Date from Flight_Booking WHERE BookingID=?";
    PreparedStatement ps=con.prepareStatement(b);
    ps.setString(1,ID);
    ResultSet a = ps.executeQuery();
    //Print the data to the console
    while(a.next()){
    return a.getString(1);
    catch( Exception e ) {
    e.printStackTrace();
    return "a";
    Actually, I would like to select Destination and Date from the database, but if I set the return result as string, then only Destination will be return,how can I modify it so that both of the Destination and Date also will be return?As I know, .Net has a return type called Dataset, in Java what should I write?
    Actually,I am writing this web services to consume it on a table from .Net,so what is the most suitable to code it so that more than one string can be return?

    Create either a list or an array and assign your values to it and return it.
    arrays
    lists

  • How to put more than 1200 characters in a text form within a pdf created in Adobe Acrobat

    I need to know how to put more than 1200 characters in a text form within a pdf created in Adobe Acrobat. I have a request from a customer to do so and after googling I have came up with nothing. Also the customer would like it if they could convert said pdf form to a microsoft word document with the text form.

    There's no limit on the number of characters you can enter into a text
    field, unless you set it as such.

  • More than one colour in titledborder text

    Hi,
    Can we have more than one colour in titledborder text at the same time.
    I have tried using html like you can in labels etc but no good.
    Cheers,
    Jim

    sorry about posting in wrong forum, just realised!

  • Sending more than one string from a server to a client in TCP/IP

    hi,
    i have two VIs where one is the server and the other the client in TCP/IP. I need to send more than 2 strings to the client at the same time.i have used the XML method but then by using XML i cant send any thing else to the client because of the byte sizes. so either i need a new way to send the strings or a new way to send more data. i have attached my VIs to this post if you need to take a look.
    thanks,
    Rambaldi.
    Attachments:
    ServerClient.zip ‏83 KB

    Well, after looking at the code it is very difficult to understand what you are trying to do. Not to be nasty or anything but your code is a mess. Did you know that in both VIs you have an infinite loop? The only way to exit your VIs is to use the Abort button. This is bad since it doesn't allow you to actually perform any type of cleanup. Your wiring is very difficult to follow. You should also avoid using local variables to pass data through your application. If you need to pass data between two parallel processes use queues, notifiers or an action engine. You can get rid of all of the sequence frames that you have. They aren't really doing anything for you and are unnecessary.
    As to your particular question I would have to assume that it is simply a result of bad coding that is preventing you from sending more than one string. You have logic in the second loop that appears to be impossible to get to since the conrol used to switch the case statement is placed on a hidden part of the front panel. Take a look at the TCP server example I posted in this thread. The example is on the second page of that thread.
    In order to help you I think you need to provide a good description of exactly what you want your server and client to do. You also need to do some code cleanup to make it readable and easier to follow.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Shell script how getopts can accept more than one string in one var

    In shell script   how  getopts  can  accept  more than one string in one variable    DES
    Here is the part of shell script that accepts variables  from the Shell script  but the   DES   variable does not accepts more than one variable.,  how to do this ??
    When i run the script like below
    sh Ericsson_4G_nwid_configuration.sh   -n  orah4g    -d   "Ericsson 4g Child"    -z Europe/Stockholm
    it does not accepts    "Ericsson 4g Child"    in  DES  Variable   and only accepts    "Ericsson"  to DES variable.
    how to make it accept     full   "Ericsson 4g Child" 
    ========================================
    while getopts “hn:r:p:v:d:z:” OPTION
    do
      case $OPTION in
      h)
      usage
      exit 1
      n)
      TEST=$OPTARG
      z)
      ZONE="$OPTARG"
      d)
      DES="$OPTARG"
      v)
      VERBOSE=1
      usage
      exit
      esac
    done

    Please use code tags when pasting to the boards: https://wiki.archlinux.org/index.php/Fo … s_and_Code
    Also, see http://mywiki.wooledge.org/Quotes

  • CAN YOU FREEZE MORE THAN 5 HEADER COLUMNS ?

    Can you freeze more than 5 header columns and header rows?

    Mike,
    According to Numbers '09 User Guide, Chapter 3, Adding Table Header Rows or Header Columns the maximum number of Headers is 5.
    The Numbers '09 User Guide is free for the download and full of important information:
    http://support.apple.com/en_US/manuals/#iwork

  • How do I  create more than one CSS style for text links?

    Hello,
    Just like the title says, I need help with creating more than one CSS text link style in Dreamweaver CS4. For instance, I want the navigation on the website I'm building to have a different text link style than a link in some part of the body copy. I've been playing with Dreamweaver for a while and can't find any way to do this. If it's even possible to do this, I would really appreciate any help.

    Yes it is possible but as you have failed to provide a valid link to your site, I will tell you in general Terms:
    1) First create a class or an ID to to your Nav bar;
    2) Now style your navbar in such a way that these styles will only apply to your nav bar.  To do this, you start your style by doing something like this:
    ul#vavigation {.........}
    ul#navigation a {.........}
    ul#navigation a:hover {.........}
    ul#navigation li {.........}
    your html code might look like this:
    <ul id="navigation">
         <li><a href="#">Home</a></li>
         etc etc .........................
    </ul>
    hth

  • Checkbox with more than one display column.

    Hi.
    I have a checkbox item which I reference in a process (stored procedure) in my page. I'd like to display more than one field for the item, in different columns.
    The lov query allows only 2 fields, the display value and the return value.
    For now I just concatenate the 2 display fields, but I would like to display them in 2 different columns.
    Is this possible?
    My other option would be to use a report and set the item type to a simple checkbox. Is it possible then to reference the values of the report checkbox in my process ?
    Thanks in advance.

    Any ideas anyone?

  • ADF Table with more than one TableSelectMany column

    Does anyone know how to add more than one TableSelectMany component to a table? So, basically I'm trying to have two checkboxes for each row in the table
    thanks,
    Eric

    Eric,
    the TableSelectMany column is element of the selection facade which only takes one element.
    To create additional checkboxes, you can - of course - add an additional table column to the table and add a checkbox to it
    Frank

  • Can we pass more than a string as SECURITY_PRINCIPAL to an EJB?

    Hi there,
    I am wondering if we could pass more than just a String as a
    SECURITY_PRINCIPAL to an EJB?
    For example, if I have EJB_1 on server_A that calls EJB_2 on server_B, when
    EJB_1 creates the InitialContext, I will need to pass in "Username" and
    "Password" as the SECURITY_PRINCIPAL and SECURITY_CREDENTIAL. From EJB_2, I
    could get the SECURITY_PRINCIPAL in the form of a java.security.Principal
    principalObject.getName() right? What if I my security principal is more
    than just a username, could I make this work?
    Thanks!
    Steven

    Hey Sri,
    Thanks for the reply. This sounds like a pretty serious flaw? I mean what if
    the authentication involves more than just a username? Or if it was a
    biometric scan or something?
    In my case, I just wanted to pass in things like client machine name, ip
    address for logging on the server side and such without having to create an
    additional parameter on each of my EJB methods. Is there any other way that
    I could do so?
    Best Rgds,
    Steven.
    "Sri" <[email protected]> wrote in message news:[email protected]..
    >
    There is no way in J2EE to piggy back objects on pricipal; you can onlyget caller
    name. However you can piggy back stringified object on your caller name. Ibelieve
    this is true for WLS too.
    S
    "Steven" <[email protected]> wrote:
    Hi there,
    I am wondering if we could pass more than just a String as a
    SECURITY_PRINCIPAL to an EJB?
    For example, if I have EJB_1 on server_A that calls EJB_2 on server_B,
    when
    EJB_1 creates the InitialContext, I will need to pass in "Username" and
    "Password" as the SECURITY_PRINCIPAL and SECURITY_CREDENTIAL. From EJB_2,
    I
    could get the SECURITY_PRINCIPAL in the form of a java.security.Principal
    principalObject.getName() right? What if I my security principal is more
    than just a username, could I make this work?
    Thanks!
    Steven

  • Print more than what's showing in text field?

    Is there any way I can set a pdf form to print more than what is displayed in a text field? i.e., when there are more text lines than space in the text field and you need to scroll down to read it?
    The only way I can think is to collate responses and export to a spreadsheet and print from there but I was wondering if there was a way to do it from the form itself (i.e., have the text automatically shrink or have it print more on the page and have the document made automatically longer.
    Cheers

    Thank you - Is there an equivalent simple feature for LIVECYCLE such as setting font size to AUTO or do  I need to go into that dynamic fiels thingy?
    Cheers:)

Maybe you are looking for

  • Which mini DVI to VGA adaptor?

    I have an 800MHz flat screen with a broken display. I have an old monitor with a VGA cable, but I can't find the correct cable to connect between the iMac and the VGA plug. I have a mini dvi to VGA adaptor, but it's not correct in that the mini DVI e

  • My mac mini keeps turning off

    I have a 1.5 ghz macmini with 512mb of ram, and it randomly shuts off, if i turn it on right away the power led starts making this weird flash as if it were in sleep mode but not exactly, see in sleep mode the led dims out as if it were going to turn

  • Auto-Reaction Method - External Operating System Command

    Hello , I am trying to run a script (test.cmd) on a monitored java system out of solution manager via ccms auto-reaction method, but without success. I have created a RFC Connection to the java system in transaction sm59, defined an external operatio

  • How can I get a new overhead line replaced?

    Hey guys, I suscribed to BT infinity two months ago and I've noticed that everytime it rains my internet is knocked offline. Yesterday my area was battered with rain and wind all day and my internet disconnected 6 times an hour as the light kept goin

  • Downloading/ Viewing Notes Created on a N96 to an ...

    Hello All. Does anyone know of a process where one can: 1) View 'Notes' created on my N96 on an Apple Mac (i.e. using the Nokia Multimedia Transfer app). 2) Download/ Sync the Notes file(s) to an Apple Mac. Please note that I've installed the Nokia M