Application Development 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: 

Reg: input/output field

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

0 Kudos

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

Former Member
0 Kudos

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.