I have a table let's call it "dbtab". The name of my internal table is "it_tab".
I have a number in "new_number".
I insert that number into the empty field "laufnr" in my dbtab by using:
update dbtab set laufnr = new_number where laufnr = ''.
This Works just fine, but the changes aren't in my it_tab.
How do I update my internal table from my dbtab?
Or how do I insert a value to a specific field in my internal table?