Which [MasterDataTable] fields trigger LanSync?
I’m currently updating product information in [DToolsProducts50].[dbo].[MasterDataTable] from the SQL back end, and I am trying to figure out which fields I need to update in order for LanSync to recognize that the rows need to be pushed into MMPD.
For example, I would run a query to update all products all Sony products to taxable. I would run the following query:
UPDATE [DToolsProducts50].[dbo].[MasterDataTable]
SET [Taxable] = 1
WHERE [Manufacturer] = N'Sony'
I’m having trouble figuring out what flags LanSync to propagate the database's changes to the D-Tools client’s local database.
I’ve experimented with updating various (and all) date fields. I also suspect that [UserID] and [MachineName] have an affect. However, I have not come to a solid conclusion, and arrive at inconsistent results.
Has anyone else experimented with this, or learned anything?
|