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
501

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
472

Hi Oscar , '

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

Regards

Arun

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- ?????????

3 REPLIES 3
Read only

Former Member
0 Likes
473

Hi Oscar , '

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

Regards

Arun

Read only

Former Member
0 Likes
472

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
472

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