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

hi ,

Former Member
0 Likes
608

hi all,

i want one requirement

I want to increase the length of the field in the selection screen.

how its possible.

thanks in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
582

Hi,

It is not possible ... you need to find proper data element/table field which fit your field requirement (length).

Regards,

Ferry Lianto

hi all,

i want one requirement

I want to increase the length of the field in the selection screen.

how its possible.

thanks in advance.

4 REPLIES 4
Read only

Former Member
0 Likes
583

Hi,

It is not possible ... you need to find proper data element/table field which fit your field requirement (length).

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
582

Hi,

If you want to increase the length of the input field..Then choose the corresponding data element..

If you want to increase the length of the text that is displayed for the field..

Try this..

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(20) v_text FOR FIELD P_LAND1.

PARAMETERS: p_land1 TYPE t005-land1.

SELECTION-SCREEN END OF LINE.

INITIALIZATION.

v_text = 'Destination country'.

Thanks

Naren

Read only

Former Member
0 Likes
582

Hello,

U could try like this:

PARAMETERS: P_VAR(100) .

Vasanth

Read only

0 Likes
582

you can declare a variable like

data: v1(20) type c.

parameters: p1 like v1.

increase v1 and p1 is increased automatically.

award points if it helps you.