cancel
Showing results for 
Search instead for 
Did you mean: 

problem in deleting a row

Former Member
0 Kudos

hi,

I have a table with set of values. added three buttons below that in table. add row, delete row, save.

if I delete the row and save and if i come again to that application still that deleted row remains. what might be the problem?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Bind the table again with removing that row from internal table in save button event

Yogesh N

Former Member
0 Kudos

No the requirement is like i can delete some values while checking but again comes to this application the row remains

Former Member
0 Kudos

you can use flag in your internal table,

when you press delete button after selecting the particular row, set the flag for this entry in itab.

now in save event loop through the table checking flag, and delete enteries. now bind the table again by the itab.

you can do the same thing in delete button event also,

if not solved, please explain more

Yogesh N