Can't Get Deluge Script to Save / Run / Work
I've followed the examples in the tutorial. I've read through every single Forum mention the word Deluge. Nothing answers why it's not working.
The example don't show either of these two differing lines in the actual script:
<return value as map> = zoho.reports.createRow(<Database Name>,<Table Name>,<Data as map>);
All the examples at this page show:
http://reports.wiki.zoho.com/Creating-Data-Entry-Forms-for-Zoho-Reports-using-Zoho-Creator.html
Without including that line with "return value" at all. Where does IT go?
The values I've included here are from my Zoho REPORTS database and they tie into the form I created in CREATOR. Nothing works.
creatingMap.put("Date Purchased", input.Date_field);
creatingMap.put("Who Purchased It", input.Purchaser);
creatingMap.put("Store", input.Store);
creatingMap.put("Type of Certificate", input.Type);
creatingMap.put("How Much Paid", input.Paid.toString());
creatingMap.put("Cert Number 1", input.Cert1);
creatingMap.put("Cert Number 2", input.Cert2);
creatingMap.put("Tip Amount", input.Tip.toString());
With THIS mysterious line at the bottom:
mapResponse = zoho.reports.createRow("StoreSales", "Sales", creatingMap);
Which I can't figure out WHAT it's referring to.
Help, please.