Overview:
CRM iRep cannot synchronize correctly when using VOD_MY_TERRITORY in the Where Clause of VMobile Object Configuration record.
Root Cause:
VOD_MY_TERRITORY returns the territory names list of logged-in users. It does not return a single value. There should be a pair of parentheses to make sure the SOQL could be compiled correctly.
Solution:
Use the Where Clause of VMobile Object Configuration record such as:
Territory_vod__c in @@VOD_MY_TERRITORY@@ => Territory_vod__c in (@@VOD_MY_TERRITORY@@)
Related Documentation:
N/A
Thank you