‎2009 Jan 07 1:18 PM
I want delete all fields of the table Z_ABC, but after I want write all data of the internal table i_tab2
DELETE FROM Z_ABC WHERE SYSTEM NE 'delete_all'. "I want delete all fields of table
MOVE-CORRESPONDING i_tab2 TO Z_ABC.
update Z_ABC.I obtain the table Z_ABC empty, and I want obtain the data of my internal table
Is necesary use the UPDATE TASK?
Can you help me, please?
‎2009 Jan 07 3:15 PM
>
> I want delete all fields of the table Z_ABC, but after I want write all data of the internal table i_tab2
>
>
DELETE FROM Z_ABC WHERE SYSTEM NE 'delete_all'. "I want delete all fields of table > > MOVE-CORRESPONDING i_tab2 TO Z_ABC. > update Z_ABC.>
> I obtain the table Z_ABC empty, and I want obtain the data of my internal table
>
> Is necesary use the UPDATE TASK?
>
> Can you help me, please?
use as
MODIFY Z_ABC FROM TABLE itab2.
commit work.
‎2009 Jan 07 3:15 PM
>
> I want delete all fields of the table Z_ABC, but after I want write all data of the internal table i_tab2
>
>
DELETE FROM Z_ABC WHERE SYSTEM NE 'delete_all'. "I want delete all fields of table > > MOVE-CORRESPONDING i_tab2 TO Z_ABC. > update Z_ABC.>
> I obtain the table Z_ABC empty, and I want obtain the data of my internal table
>
> Is necesary use the UPDATE TASK?
>
> Can you help me, please?
use as
MODIFY Z_ABC FROM TABLE itab2.
commit work.