Hello,
We have a requirement to show check box in POWL report.
Issue are : 1. Once we select check box it gets disabled. so we cannot deselect that again.
2. Upon selecting check box a X appears after the check box.
Below is the code which we are using to add check box.
Type of ls_work is powl_fieldcat_sty.
*-- Display check box for Selection
IF <lfs_schema>-tabname EQ lc_structure_name AND
<lfs_schema>-fieldname EQ lc_check.
ls_work-colid = lc_check.
ls_work-display_type = lc_checkbox.
ls_work-editable = abap_true.
ls_work-editable_ref = <lfs_schema>-fieldname.
ENDIF.
Check below snapshots.
Initial View :
Post Check box Selection:

