Once a Table object and a Table View object are connected, all data changes made in one object are directly propagated to the other. This propagation can flow in both directions and happens automatically (no additional coding):
Rem oTableView1 is an SAP Table View object placed on the
Rem Visual Basic Form
Rem oTable is a Table object
oTable.Views.Add oTableView1.object ‘ Connect the grid with the table
oTable(1,1) = "Hallo" ‘ Hallo is automatically displayed by the grid