I have a table in my dynpro.In WDDOINIT method , i am displaying the records in the table(which are displayed correctly).I have a delete button where i want that when a user select a row in the table and click on delete button the corresponding row should be deleted from the DATABASE TABLE (not just the internal table).
What I am doing is I m getting the attributes of the table node on BUTTON CLICK and then i m executing a delete from table statement for the particular row.Its succesfully deleting from the database.
But i want to refresh the table too as soon as the record is deleted.One method i know is to delete from the internal table as well and then bind the internal table again to the table node but tht will be too long.
Is there any direct way to just refresh the table??
PS: I m not using LEAD SELECTION at all
THANKs