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

Editable ALV List

Former Member
0 Likes
415

Hi Everyone,

Is it possible to make some fields in an ALV list editable? I have a requirement to make some fields editable, and a checkbox button for each output. Is this also doable for ALV Grid?

Thanks,

Jim

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
390

Hi Jim,

Please refer the link,

Best Regards.

    • Reward points if it is useful.

2 REPLIES 2
Read only

Former Member
0 Likes
391

Hi Jim,

Please refer the link,

Best Regards.

    • Reward points if it is useful.

Read only

Former Member
0 Likes
390

Hi,

while creating the field catalog do like this.

CLEAR FLDCAT[].

CLEAR wa_fldcat.

wa_fldcat-Col_pos = 1.

wa_fldcat-fieldname = 'FIELDS'.

wa_fldcat-coltext = 'FIELDS'.

wa_fldcat-outputlen = 30.

APPEND wa_fldcat TO FLDCAT.

CLEAR wa_fldcat.

CLEAR wa_fldcat.

wa_fldcat-Col_pos = 2.

wa_fldcat-fieldname = 'DESC'.

wa_fldcat-coltext = 'DESCRIPTION'.

wa_fldcat-outputlen = 60.

APPEND wa_fldcat TO FLDCAT.

CLEAR wa_fldcat.

CLEAR wa_fldcat.

wa_fldcat-Col_pos = 3.

wa_fldcat-fieldname = 'FLAG'.

wa_fldcat-coltext = 'CHECK'.

wa_fldcat-outputlen = 3.

wa_fldcat-checkbox = 'X'.

wa_fldcat-edit = 'X'.

APPEND wa_fldcat TO FLDCAT.

CLEAR wa_fldcat.

in this 3rd column is only editable.

regards,

bharat.