‎2012 Sep 18 12:29 PM
Hi folks,
i have created one alv grid using CL_SALV_TABLE where it displays the check box and correpsonding orders
When i select the check box and do process then the SO gets processed and deleted from this grid output.
and i have two more buttons i.e., REFRESH and EXCEUTE on application tool barr
When i press REFRESH once then i am not able to select check box but when i press twice the refresh button than i am able to check and uncheck the check box
Please help, as i am struggling this for since last two days
Regards
Ravi
‎2012 Sep 18 12:47 PM
Hi use below code,
rs_selfield
TYPE slis_selfield
CASE
r_ucomm.
LOOP AT
gt_final INTO gs_final .
gs_final-chkbx = 'X'.
MODIFY gt_final FROM gs_final TRANSPORTING chkbx.
CLEAR gs_final.
ENDLOOP
Amol