Data access tasks like 'For each record' aren't supported for 'integration forms'.

Data access tasks like 'For each record' aren't supported for 'integration forms'.

My code is not running because i get the error  "Data access tasks like 'For each record' aren't supported for 'integration forms'."
I have my integration setup with Zoho CRM + Zoho Creator, the form is visible and working on my zoho creator however in my ZML snippet i cannot make an iteration inside my page
  1. <%{
  2. %>
  3. <panel>
  4. <%
  5. for each rec in Recompensas[ID != 0]
  6. {
  7. %>
  8. <pr height='fill' width='fill'>
  9. <pc width='100%' bgColor='#FFFFFF' padding='20px' hAlign="left">
  10. <text type='Text' value='<%=rec.Name%>'></text>
  11. </pc>
  12. </pr>
  13. <%
  14. } // for each end
  15. %>
  16. </panel>

  17. <%

  18. }%>