‎2008 Feb 19 9:53 AM
how can I store a string field (user input) in a database table (r 4.6c)?
‎2008 Feb 19 9:55 AM
Just remember the maximum length a single field in a DB table can be defined to is 255, hence you will have to guess the maximum length the user can enter and create those many number of fields of length 255 in your DB table and then break up the data when updating in DB from string and reverse, build back the string when retrieving from DB.
‎2008 Feb 19 9:55 AM
Just remember the maximum length a single field in a DB table can be defined to is 255, hence you will have to guess the maximum length the user can enter and create those many number of fields of length 255 in your DB table and then break up the data when updating in DB from string and reverse, build back the string when retrieving from DB.
‎2008 Feb 19 9:56 AM
Please use link below.
http://help.sap.com/saphelp_nw04/helpdata/en/e7/968aa8b2384dd9835f91e7f8470064/content.htm
Thanks,