‎2009 Mar 10 8:09 AM
Dear Community
how can I make only one column editable in the ALV . All the the others shuould be not editable.
Regards
sas
‎2009 Mar 10 8:12 AM
in the fielcatalog population use
it_fieldcat-edit = 'X'. for that field
‎2009 Mar 10 8:12 AM
in the fielcatalog population use
it_fieldcat-edit = 'X'. for that field
‎2009 Mar 10 8:12 AM
wa_fieldcat-edit = 'X'
thanks.
where WA_fieldcat is of type slis_fieldcat_alv.
Edited by: Sarbajit Majumdar on Mar 10, 2009 1:42 PM
‎2009 Mar 10 8:12 AM
‎2009 Mar 10 8:13 AM
‎2009 Mar 10 8:13 AM
Hi
Make active the column edit option in the REUSE function modules.
Wa_fieldcatalog-edit = 'X'.
Regards,
Sreeram Kumar.Madisetty
‎2009 Mar 10 8:36 AM
Hi,
Which ever field you want to make editable,while maintainig its field catalog,
you can make its editable property as 'X' like:
DATA : it_field TYPE slis_t_fieldcat_alv,
wa_field TYPE slis_fieldcat_alv.
wa_field-fieldname = 'EBELN'.
wa_field-edit = 'X'.
APPEND wa_field TO it_field.
CLEAR wa_field.
hope it helps
Regrds
Mansi