Hi all,
If i have the code like this,
data: data_ref type ref to data.
field-symbols: <ls_data> type any
.
create data data_ref like line of xth_data.
assign data_ref->* to <ls_data>.
Over there, i create <ls_data> where it refer to table xth_data (this table has type hashed table).
Do you know what should i write the command ? if i want to delete the record from the xth_data .. ??
e.g. if i want to delete data no. 2 within xth_data ...
Really need your guidance .
Regards,
Niel.