‎2010 Jan 29 11:30 AM
Hi SDN,
I want to create table with table maitainance generator.
so i created transperant table.but i want to maintain a field with 1024 char long.
During checking it showing error "field is too long than 255"
How can i resolve it?
‎2010 Jan 29 11:46 AM
‎2010 Jan 29 11:53 AM
Use data element DSVASDLONGDESCRIPTION and before declaring it include a length field of type INT4 in the table. It must be located directly before the long field in the field list.
Please also note that long fields must be located at the very end of the field list.
‎2010 Jan 29 11:57 AM
Hi
Use data element of data type LCHR or LRAW.
Include a length field of type INT4 in the table. It must be located directly before the long field in the field list.
Please also note that long fields must be located at the very end of the field list.
‎2010 Feb 03 12:32 PM
Try using data element CHAR1250 for the field in the table .
OR,
IN SE11 create a domain or char type and length u need.
Now assign this domain to the data element .