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

Do editable a column of a ALV (object oriented programming)

Former Member
0 Likes
436

Hello,

How I can do editable a column of a ALV (object oriented programming) ??

What field of a fieldcatalog let it ??

Thanks.

wa_fieldcatalog-fieldname = 'NUM_KGS'.

wa_fieldcatalog-seltext = 'Kg'.

wa_fieldcatalog-coltext = 'Kg'.

wa_fieldcatalog-just = 'L'.

wa_fieldcatalog-tabname = 'IT_DATOS'.

wa_fieldcatalog- ?????????

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
407

Hi Oscar , '

Use the field EDIT , set that as 'X'.

Regards

Arun

3 REPLIES 3
Read only

Former Member
0 Likes
408

Hi Oscar , '

Use the field EDIT , set that as 'X'.

Regards

Arun

Read only

Former Member
0 Likes
407

In the program add the following field

wa_fieldcatalog-EDIT = 'X'.

append wa_fieldcatalog.

you will get the column editable

Read only

Former Member
0 Likes
407

use the 'input' and 'edit' fields of the field catalog. set them to 'X'.