Skip to Content
0
Former Member
May 15, 2008 at 01:07 PM

Delete data from internal table

2825 Views

Hi All,

I require to read the data from internal table: i_data_new and search for if the data in the internal table are meet for certain condition. If yes, i will deleted the record from that table and proceed with another requirement. Could anyone help me with sample code on how i retrieve the data and delete it from internal table. Thanks

Condition like: s_data = "NEW" and v_test = "ABC".

my sample of current code:

Code for Select statement..........

................................................

.................................................

APPEND LINES OF i_data_tmp TO i_data_new.

REFRESH i_data_tmp.

ENDSELECT.