Hi, we are seeing newly created records show up in lists which are supposed to be empty.
We have a database of Customers. On the customer screen, we have a tab panel showing transactions for that customer. This tab panel has an independent found set and is populated by an SQL query.
When there are no transactions for a Customer, we empty the list with the following code:
var arr = new Array();
var dataset = databaseManager.convertToDataSet(arr);
forms.acc_transaction_activity_list.controller.loadRecords(dataset);
Now, if you stay on this form, new transactions added by other users will start appearing… They are not related to the particular customer in any way.
The new transactions are created on another form using an independent found set…
Any ideas? This is driving the accounts department crazy…