Hi,
I have declared a hashed table as follows:
DATA vbrk TYPE HASHED TABLE OF t_vbrk
WITH HEADER LINE
WITH UNIQUE KEY vbeln.
Another internal table as follows:
DATA vbrktab2 TYPE TABLE OF t_vbrk WITH HEADER LINE.
I fetch data and populate vbrktab2. No issues, i am able to see the data in this while debugging.
Then I do as follows:
INSERT vbrktab2 INTO TABLE vbrk.
But I dont see the records added in vbrk !!
What could be the issue ? I even tried doing a COMMIT WORK after that, still the records are not added to vbrk. VBELN are unique, and hence that is also not an issue !!
Any suggestions ?
thks