I have this strange problem where the custom view I created does not open records. When the form returns the records, if you attempt to click on any row it redirects to the create new form. Anyone know why the view is behaving this way?
Here is my query in case anyone is curious:
<fetchxml>
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true" >
<entity name="account" >
<attribute name="name" />
<attribute name="new_facebook" />
<order descending="false" attribute="name" />
<link-entity name="annotation" alias="ao" to="accountid" from="objectid" />
<filter type="and" >
<condition attribute="statuscode" operator="eq" value="1" />
<filter type="or" >
<condition attribute="new_facebook" operator="not-null" />
<condition entityname="ao" attribute="notetext" operator="like" value="%WEB%%" />
</filter>
</filter>
</entity>
</fetch>
</fetchxml>
*This post is locked for comments