2007 Feb 15 4:22 PM
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.
2007 Feb 15 4:24 PM
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.
2007 Feb 15 4:24 PM
Hi,
It is not possible ... you need to find proper data element/table field which fit your field requirement (length).
Regards,
Ferry Lianto
2007 Feb 15 4:25 PM
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
2007 Feb 15 4:26 PM
2007 Feb 15 4:35 PM
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |