Hello Purnand,
How can you convert it_final = it_bsad. ?
Is it_bsad and it_final is same structure? These are very basic things.
You can loop at it_bsad and then append the required data into It_final. Then there will be no error.
LOOP AT IT_BSAD INTO WA_BSAD.
CLEAR WA_FINAL.
WA_FINAL-bukrs = WA_BSAD-bukrs
WA_FINAL-kunnr = WA_BSAD-kunnr
WA_FINAL-budat = WA_BSAD-buDAT
AND SO ON.
APPEND OR MODIFY THE IT_FINAL TABLE.
ENDLOOP.
Thanks,
Abhijit