What?
This article serves as a best practice and reminder to myself on how to stop endless loops from happening in Creator and crashing the application. This is more for complex Creator forms which ...
... Not sure about the rest of you, but I've been using this for pagination purposes and for the system to work out how many pages or loops in total it would need to do.
How?
Here's a couple of working ...
... on the employee record
So now we just need to append the following code which loops through the map / associative array we just created and shove this onto every employee's record. My employee recor ...
... -
Trigger: Standalone function triggered on execute
Purpose: Loops through all candidates and creates records referring to the Candidate Ref and Job Opening
Date Created: 2023-02-02 ...
... are zeros... But I'm keen on avoiding using loops where possible so we don't breach a statement execution limit in the Zoho app function.
How?
If we're not going to use loops, then the next best thing ...
What?
Just a quick article if you get the above error and what to look for.
Why?
I was writing a function with perhaps too many for each loops within a for loop.
How?
The following is 1 ...
... the function I came up with. It loops through a maximum of 2500 products sorted in order of ID ascending (starting with ID=0) retrieving 250 per call and using since_id to not list the same one twice ...
... the following code which generates a sample CSV and then loops through storing each row as a data record and outputting it to screen:
// generate a sample CSV file
v_DataCSV = "1,Joel Lipman,Kings ...
... Reactivate any workflows you deactivated in step 1.
Sample Code
Consider the following standalone function which loops through every contact and deletes the duplicate lead (if a lead exists with ...
What?
This is a quick article to template some code to me on sorting a map variable in Zoho Deluge, specifically Zoho Creator.
Why?
I do this a lot but in the following example, I want to sort ...
What?
The aim of this article is to document how you can display a Creator report to the user, that they can select (tickbox) multiple records in that report, and then have a button that loops through ...
... contents
- Loops through each row and splits by commas (not within quotes)
- Sorts the final array by a object label
function populate_array_from_csv(this_file){
// using deprecated ...
... E a.`fieldtochange` LIKE '%stringtofind%'
Watch out for any recursive loops.
Disclaimer:
As I use this on more websites, I will update this article accordingly. At the time of print, I ha ...
... buffer it loops through each of the input columns passed into the component
// It locates the actual column value (including checking for null) using the index array created in the Pre-Execute
...
... the following loops through directory for any file beginning with Reference
FOR %%A IN ('DIR InitializingFile*') DO ECHO %%A
-- yields:
InitializingFile_123.csv
InitializingFile_456.csv
-- the ...
I have googled, binged and asked but to no avail. Some self-proclaimed IT experts in forums said "why would you want to do that?". Unhelpful Bellends. It's a bit like asking me "Why can't I turn on ...
... one.
Question How does the thumbnail name generating work?
Answer: The program loops through the images folder and finds a name that isn't taken (something like "000065.bmp"). It won't overwrite existing ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.