Hi Partheeban,
For refreshing a UI5 table, you would have to do the following:
1. update the model (i.e., oModel.setData({modelData: newRows});)
2. set model to the table again (i.e., oTable.setModel(oModel))
3. bind rows to the table (i.e., oTable.bindRows("/modelData"))
Try applying this to your code. (you could have a separate js function that you call when the table needs to be refreshed)
Hope this helps!
Best Regards,
Ria