Hi All,
When I try To Filter Subgrid using fetchXml it throws error When i use normal current entity filter like name eq 'somthing' its work fine.But When am use link entity filter it show error like this....
var fetch3 = "<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'>" +
"<entity name='account'>" +
"<attribute name='name' />" +
"<attribute name='primarycontactid' />" +
"<attribute name='telephone1' />" +
"<attribute name='accountid' />" +
"<attribute name='bal_contactlookup' />"+
"<order attribute='name' descending='false' />" +
"<link-entity name='contact' from='contactid' to='bal_contactlookup' link-type='inner' alias='ab'>" +
"<filter type='and'>" +
"<condition attribute='jobtitle' operator='like' value='c%' />" +
"</filter>" +
"</link-entity>" +
"</entity>" +
"</fetch>";
this is my fetch...(i am using Unified Version of CRM)