Modify Table Control
Modify Table Control
Procedure for Table control line selection and modifying master table using those values.
1). U should take one variable in your internal table or in structure which is used for table
control fields
ex :
data :begin of itab occurs 0 ,
mark type c ,
matnr like mara-matnr ,
matkl like mara-matkl,
maktx like makt-maktx,
end of itab .
ENDLOOP.
follow this code …Create one pushbutton and give Fucnction code to that and write
below code
WHEN 'DELETE'.
LOOP AT itab WHERE mark = 'X'.
DELETE itab.
ENDLOOP.
ENDIF.