Version 2104 (9.1.4.31) (DB 9.1.4.31) on-premises
Trying to add the "Saved Views" subgrid from Advanced Find to a Dashboard, possibly within an iFrame or creating a Web Resource, and I can't find any help on how to accomplish this. Here is a screenshot showing what I'd like to show up in the iFrame or Web Resource:
Specifically, I'd like the "Saved Views" subgrid for All Entity Types (as in when choosing "All" from the "Record Type" dropdown in the "Saved Views" tab ribbon).
Can anyone tell me how I might accomplish this?
EDIT: I've got the XML code I want doing what I want, but I can't figure out how to make it into a view in CRM. There is no way to create an Advanced Find view for the "User Query" entity, which is the entity I want to show. Thus, I cannot build the view columns properly to match, and am unable to save the custom XML over the top of any existing views.
How to I get the following to appear on a Dashboard?
<fetch version="1.0" output-format="xml-platform" mapping="logical" >
<entity name="userquery" >
<filter type="and" >
<condition attribute="statecode" operator="eq" value="0" />
<condition attribute="ownerid" operator="eq-userid" />
</filter>
<attribute name="userqueryid" />
<attribute name="name" />
<attribute name="modifiedon" />
<attribute name="owneridname" />
<order attribute="name" descending="false" />
</entity>
</fetch>