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: 

regarding field length in ddic

0 Kudos

suppose we have to create our selection screen and on the selection screen one field is there that should accept chars more than 600 and this also get stored in the corresponding table that is in data dictionary.

how to create it and which field i suppose to use.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

You can use the

1. data type LCHR with length as you need(more than 600)

or

2. existing domain EDI_SDATA.--create the data lement as per your need.

6 REPLIES 6

Former Member
0 Kudos

You can use the

1. data type LCHR with length as you need(more than 600)

or

2. existing domain EDI_SDATA.--create the data lement as per your need.

Former Member
0 Kudos

u can define the field as follows -

parameters: p_char(600).

enter data on selection screen then..

depending upon ur requirement update or insert the record in databsa table..

reward if helps.

0 Kudos

how to use lchar (more than 600 characters) or what is edi_sdata domin and how to use it

Former Member
0 Kudos

Hi,

As you are storing the same data in table.

you already have created the table for this.

so in table field type use lchar and data element.

define parameter p like your table-field.

andreas_mann3
Active Contributor
0 Kudos

Hi,

use an extra screen with an text-edit control and save it with fm save_text

A.

0 Kudos

how to use an extra screen with an text-edit control and save it with fm save_text

pls explain briefly

with regards