We have solved this problem by using IfEquals(ToString(@field),'0' ,'ABC' ,'Error'); in CRM Connector.Where field was an integer 8 bit (Small Int).== did not work
We have a field which is am Integer 8 (Small Int). It is present as an enumeration.How to compare its values in a CRM Connectoreg @FIELD == 0 gives error as we cannot compare small Int with integer @FIELD == '0' gives error as we cannot compare small Int with StringToString() and Tointeger() fu...