Hi,
I am trying to show accounts in Portal. but its applying filter automatically. please help me to solve this problem.below is my fetch xml
<div class="container"> {% fetchxml my_query %} <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true"> <entity name="opportunity"> <attribute name="name" /> <attribute name="customerid" /> <attribute name="estimatedvalue" /> <attribute name="statuscode" /> <attribute name="opportunityid" /> <order attribute="name" descending="false" /> </entity> </fetch> {% endfetchxml %} {{ my_query.xml | escape }} {{ my_query.results.total_record_count }} {{ my_query.results.more_records }} {{ my_query.results.paging_cookie | escape }} {{my_query.results.entities}} {% for result in my_query.results.entities %} <div style="padding: 15px 30px 0 0; clear: both;"> <h2> {{ result.name | escape }} </h2> <div> <p> {{ result.customerid | escape }} </p> </div> <div> <p> {{ result.estimatedvalue | escape }} </p> <br /> </div> <div> <p> {{ result.opportunityid | escape }} </p> <br /> </div> </div> {% endfor %} </div> </section>
when i go and refresh portal than it is given error attached in screen shot,
*This post is locked for comments