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

check box in grid control (oops)

Former Member
0 Likes
743

anybody help me to place check box for records in grid control which is displayed in oops alv.

thanks,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
712

In the fieldcatlog there is field called as checkbox pass that as 'X'.

anybody help me to place check box for records in grid control which is displayed in oops alv.

thanks,

4 REPLIES 4
Read only

Former Member
0 Likes
713

In the fieldcatlog there is field called as checkbox pass that as 'X'.

Read only

Former Member
0 Likes
712

see program BCALV_EDIT_05

This example shows how to use checkboxes within an ALV Grid Control.

o how to define a column for editable checkboxes for an attribute of your list (see also remark below)

o how to evaluate the checked checkboxes

o how to switch between editable and non-editable checkboxes

Read only

Former Member
0 Likes
712

Check the report BCALV_EDIT_05 in se38.

Read only

Former Member
0 Likes
712

In final table add a field like check(1) type C.

In fieldcat add like this..

gs_fcat-fieldname = 'CHECK'.
  gs_fcat-reptext   = text-075.
  gs_fcat-checkbox = 'X'.
  gs_fcat-edit = 'X'.
  APPEND gs_fcat TO gt_fcat.