‎2007 Jun 13 11:58 AM
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- ?????????
‎2007 Jun 13 12:00 PM
‎2007 Jun 13 12:00 PM
‎2007 Jun 13 12:01 PM
In the program add the following field
wa_fieldcatalog-EDIT = 'X'.
append wa_fieldcatalog.
you will get the column editable
‎2007 Jun 13 12:04 PM
use the 'input' and 'edit' fields of the field catalog. set them to 'X'.