2005 Aug 29 6:41 AM
hai frnds,
i have a situation in which i have to a select record (checkbox) in the displayed report and delete the same. how to do this???
2005 Aug 29 6:51 AM
diplay the records in report with checkbox in each records. This is very simple keep some fields called delete flag in itab. while displaying in screen
write that flag as check box
ex:
write del_flg as checkbox.
select the records for deletion & execute the pgm
then using read line u can read the data from the screen.
So read screen date & check whether the del_flg is check.
if it is checked then delete that record using
abap stmt delete
regds
gv
2005 Aug 29 6:47 AM
2005 Aug 29 6:51 AM
diplay the records in report with checkbox in each records. This is very simple keep some fields called delete flag in itab. while displaying in screen
write that flag as check box
ex:
write del_flg as checkbox.
select the records for deletion & execute the pgm
then using read line u can read the data from the screen.
So read screen date & check whether the del_flg is check.
if it is checked then delete that record using
abap stmt delete
regds
gv
2005 Aug 29 6:53 AM
2005 Aug 29 7:09 AM
2005 Aug 29 7:40 AM
Thanks for ur replies... i will check with the link and will be implementing this. thank all guys.. in case of doubts i'll revert to back.
Ateeq.