I'm working through the exercises in MOB30R and on Unit 6, Task 9.4 I'm getting an error where the notification dialog keeps appearing. This is caused by the SycloCustomersExchange table not being populated when a new Customer is added to the Customers table.
The trigger is firing but I'm seeing the following entry in one of the log files:
2014/09/16 11:39:56.100: + Query=Push "PushCustomers" Read "PushUpdateCustomersExchange"
2014/09/16 11:39:56.100: : 8 lines, 7 non-printing characters, 199 total characters
UPDATE
SycloCustomersExchange
SET
Action = 'R'
WHERE
UserID = 'Cannot find flunky user.agentryID' AND
CustomerID = 'Cannot find flunky object.customerID' AND
ServerID = '############'
What would cause the cannot find flunky statement?
Here is the code for my PushUpdateCustomersExchange:
UPDATE
SycloCustomersExchange
SET
Action = 'R'
WHERE
UserID = '<<user.agentryID>>' AND
CustomerID = '<<object.customerID>>' AND
ServerID = '<<server.serialNumber>>'
Any suggestions appreciated.
Thanks,
Dave