Hello Experts,
Please have a look at below code .
Code:
loop at <LT_ITAB> ASSIGNING <ls_itab> .
ASSIGN COMPONENT 'DOMVALUE' OF STRUCTURE <ls_itab > TO <ls_itab1>.
READ TABLE lt_itab_1
INTO ls_itab_1
WITH KEY table_line = <ls_itab1>.
IF ls_valid_partner_fct EQ 'YY' .
DELETE <lt_partner_functions>.
ENDIF .
endloop .
I need to delete the record which is working fine ,but the record which is deleted need to be inserted back at row1 of table <LT_ITAB> .Please tell me how to do that.
Regards,
Sharad