... the first is the string to start with, the second is the number of spaces to pad with.
//
// set number of times to iterate through loop (plus 1)
v_CheckDaysAhead = 7;
//
// create a string ...
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 ...
What?
A very quick article on converting a Map string into a HTML table without using a for each loop.
Why?
I have quite a big response from our CRM that hits a statement execution limit if I ...
What?
This code snippet took me a while to do and the documentation is flaky so I thought I'd make a note here just in case I need to refer to it again.
Why?
I want to modify a picklist and fill ...
What?
This is an article to demonstrate a quick step-by-step on having an SSIS package loop through a directory/folder of files in order to populate a database table. We could add each file as a separate ...
What?
A quick note for myself as I'd forgotten how to do this (we're talking technology belonging to the 90s - MS-DOS v6.22). The example wants to loop through a directory and then loop through the line ...
What?
A quick article to document a Zoho Deluge function converting a hexadecimal color reference to a Red Green Blue value (RGB).
Why?
It's likely that Zoho will avail their color picker at some ...
... looping but only have 1 upload so getting permalink for this upload
for each m_ThisData in r_UploadResponse.get("data")
{
if(!isNull(m_ThisData.get("attributes")))
{
if(!isNull(m_ThisData.get("attributes").get("Permalink")))
{
v_PermaLin ...
... statement execution limit exceed Line:(10)" but it will info out each number to increment:
//
l_Loop = " ".leftpad(5000).replaceAll(" ", ",").toList();
//
for each index v_Iteration in l_Loop
{
info ...
... :v_Endpoint
type :GET
headers:m_Header
];
if(r_ShopifyWebhooks.get("webhooks") != null)
{
//
// loop through to see if our custom notifications exist
// note that installing other ...
...
How?
So first, this article shows you how to setup an API connection, and then we'll include the code to count the total number of products, and then finallly show the code to loop through all the ...
... image URL to/from ZohoWriter.
Loop through active users in ZohoCRM.
Merge the HTML email signature with the fields evaluated.
Function: fn_Workdrive_HostImage
I add this function to the CRM ...
... 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 ...
... that key. I can't sit there entering one customer at a time. Even a loop would hit a statement execution limit.
Why?
My use-case is that I need this done over a dataset of 20k+ contact records ...
... adding label because -3 often displays "Net 56" instead.
m_InvoiceDetails.put("payment_terms_label","Due end of next month");
//
// loop through line items and populate
for each m_SOLineItem in l_SalesOrderLineItems
{
...
... or create.
- Loop through eBay payments to record all the different payments received.
Date Modified: 2023-03-14 (Joel Lipman)
- Resolved fix of incorrect customer (Use Email rather than ...
... now lets loop through a dynamic page list
for each v_Page in l_Pages
{
//
// specify which page
m_Pagination = Map();
m_Pagination.put("PageNumber",v_Page);
m_Pagination.put("EntriesPerPage",v_PerPage);
m_Params.put("Pagination",m_Pagination);
//
// ...
... 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 ...
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.