Hello Guys,
I have a fetchxml where in some records the TransactionDate is present and in some records TransactionDate
is black or null how to fetch records with data and null because MS CRM does not return the column with null values please help
<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'>
<entity name='hd_tblarchistory'>
<attribute name='hd_hstmercod' alias='MerchantCode' />
<attribute name='hd_hstmemcod' alias='MemberCode' />
<attribute name='hd_hsttxndat' alias='TransactionDate' />
<attribute name='hd_hsttxnnar' alias='Narration' />
<attribute name='hd_hstmsgred' alias='MessageRead' />
<attribute name='hd_hstseqnum' alias='Sequence' />
<attribute name='hd_hsttxntyp' alias='Txnheader' />
<filter>
<condition attribute='hd_hstmercod' operator='eq' value='JUMEI02000' />
<filter>
<condition attribute='hd_hstmemcod' operator='eq' value='2000133405' />
<condition attribute='hd_hsttxntyp' operator='not-in'>
<value>OF</value>
<value>NT</value>
</condition>
</filter>
</filter>
</entity>
</fetch>