Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table with long text field

Former Member
0 Likes
3,375

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?

4 REPLIES 4
Read only

Former Member
0 Likes
1,192

Which data element is provided?

Read only

Former Member
0 Likes
1,192

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.

Read only

Former Member
0 Likes
1,192

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.

Read only

Former Member
0 Likes
1,192

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 .