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
- <%{
- %>
- <panel>
- <%
- for each rec in Recompensas[ID != 0]
- {
- %>
- <pr height='fill' width='fill'>
- <pc width='100%' bgColor='#FFFFFF' padding='20px' hAlign="left">
- <text type='Text' value='<%=rec.Name%>'></text>
- </pc>
- </pr>
- <%
- } // for each end
- %>
- </panel>
- <%
- }%>