I would like to know if it is possible to create a new view using XML.
For example, I have this query:
<fetch top="50">
<entity name="contact">
<attribute name="fullname" />
<filter>
<condition attribute="fullname" operator="eq" value="Blabla" />
</filter>
</entity>
</fetch>
I want to transform in a view. Is it possible?
I saw that the views that we create are saved in the database in the savedquery table.
Is there any easy way of inserting a new record with my custom XML or any other way of achieving it?
--- The XML above is just an example, I'll be using one that there are tables relationship ---