Skip to Content
0
Former Member
Apr 22, 2009 at 08:18 AM

deleting entry from internal table

15782 Views

Hi Experts,

i have the following internal table:

data : it_result1 TYPE crmt_object_guid_tab

and work area

data : wa_result1 type crmt_object_guid.

i have to delete a guid from internal table based on some condition.

loop at it_resul1 into wa_result1

if lv_priority eq priority.

  • delete this entry from internal table.

endif.

endloop..

i tried using delete table it_result with table key CRMT_OBJECT_GUID = wa_result. but this is giving syntax error.

what should be done to delete the entry?

Thanks and regards

Shilpi