Hi All,
I am trying to read a table inside a loop like in abap.
I am aware that i have to use foreach key to loop a table but how to read inside the loop with conditions.
Please help.
Two table this.request and this.response, i want to compare the POSNR field and then fill the other table.
POSNR | MATNR | NETWR |
---|---|---|
10 | TEST1 | |
20 | TEST2 | |
30 | TEST3 |
POSNR | MATNR | NETWR |
---|---|---|
10 | TEST1 | 1000 |
20 | TEST2 | 1500 |
30 | TEST3 | 3000 |
Thank and Regards,
Ajith