‎2009 Sep 21 11:02 AM
Can anybody please tell me how to create checkbox in the output of a list using ALV classes. That list is displayed using the method set_table_for_first_display plz send me some sample code
regards
pavan
‎2009 Sep 21 11:53 AM
Hi,
if you want a field to be a chekcbox, there is a attribute in the fieldcatalog named CHEKCBOX you have to set to 'X'.
best regards,
Hans Hohenfeld
‎2009 Sep 21 11:53 AM
Hi,
if you want a field to be a chekcbox, there is a attribute in the fieldcatalog named CHEKCBOX you have to set to 'X'.
best regards,
Hans Hohenfeld
‎2009 Sep 21 12:14 PM
Hi,
Try using field catalog.
fs_fcat-coltext = 'CHECKBOX'.
fs_fcat-col_pos = 1.
fs_fcat-checkbox = 'X'.
fs_fcat-edit = 'X'.
fs_fcat-emphasize = 'C300'.
‎2009 Sep 21 2:03 PM
Hi,
To enable the ABAP ALV Class Checkbox, have a look at the following link:
http://help.sap.com/saphelp_sm32/helpdata/EN/26/46fb40f17af66fe10000000a1550b0/content.htm
This will provide you with a detailed information of the ALV Checkbox functionality.
Hope this helps.
Thanks,
Samantak.
‎2009 Sep 21 5:30 PM
Hello Pavan
Almost all you need to know about ALV (class CL_GUI_ALV_GRID) can be found in the excellent tutorial:
[An Easy Reference For ALV Grid Control|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907]
Regards
Uwe