Naveen- we cannot perform any operations without getting field symbols assigned....In that case
it is better to go for WA2 into ITAB2....In the following code if you want to replace wa2 with field symbols and expect to work , thats not possible ......If i am not wrong even in case of append also it will not work ...check it once ...if you execute the program once it come across the field symbol getting assigned with some value , it goes to dump...kindly check please...
- loop at itab into wa.
- wa2-field1 = wa-field1.
- wa2-amount1 = wa-amount1.
- collect wa2 into itab2.
- endloop.
Thanks
Shravan