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

Reg: input/output field

Former Member
0 Likes
562

Hi,

my input/output field should accept more than 255 characters because iam entering more email id's , how should i handle this

Hi,

my input/output field should accept more than 255 characters because iam entering more email id's , how should i handle this

3 REPLIES 3
Read only

Former Member
0 Likes
531

Hi,

You can declare a variable with length more that 255 like this..

DATA l(300) type c.

Alternatively you can create a Data Element and Domain and use it.

Regards,

Vinodh.

Read only

0 Likes
531

Hi,

I need to insert tht 30 mail ids from the input/output field in the database table which i have created, iam giving this field type in tht table as String but it is showing some error, how can i get mail id's one after other in database table if i insert, can any one tell me the logic

Read only

Former Member
0 Likes
531

Hi, for this u need to use the custom control

or

U can use the table control which has only one column the type is char and having length 255.

reward me if useful.