... several calculations happen in real-time making it really difficult to extract and use.
The key trick I used was to actually use a single-line text to store the customer's requested time. Let's use ...
... single out this person (can be removed after testing)
if(v_LastName.containsIgnoreCase("Lipman"))
{
//
// get user id
v_UserID = r_User.get("id");
//
// startofweek is a ...
... up a SQL query, or more specifically, a COQL - CRM Object Query Language
Try using distinct on a single-line text field
Adapt the query for unique values in a lookup field
I won't demonstrate ...
... receive data
Login to your Zoho Creator and setup a form, I've called mine "eBay Webhook Payloads"
Add a Single-Line field called "Event Type"
Add a Multi-line field called "Payload"
Click Done
Make ...
...
Replace all commas in between a pair of double-quotes: Well I couldn't find a single regex that can do this in one go but by applying the same regex to the same value (line 29), solved this for the sample ...
What?
A super quick article to remind me how to generate and send a CSV as an attachment to an email.
Why?
Because I often get casually asked "oh and can you archive the data and email it to me ...
... Name (type: Single Line)
File Ref (type: Single Line)
Expiry Date Time (type: Date-Time)
File Download (type: File upload)
Create a connection in the Creator app with the scope: ZohoCRM.modules.ALL ...
... all the selected (ticked) records. The example below documents a report of Quotes where we want to merge all the product line items of each quote into one single quote.
Why?
I've written this ...
... let's call it "Notifications".
Drag a single-line field and a multi-line field onto the form called "Title" and "Content" respectively.
If you use this method to populate your notifications, you can send ...
... name "MyImage". There is an additional single-line text field called "Name". I have added an entry with name "Logo" and I have uploaded an image accordingly.
// change this to eu (Europe), com (US), ...
... Instead, do the above workflow to attach the files to the Sales Order in Zoho Books, then in your Creator app, do the following for a delayed secondary workflow:
Add a single-line field to your Creator ...
... when listview row is double-clicked to open Chrome Browser with selected Profile.
#NoEnv
#Warn
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
; --------------------------------------------------------------------------------------
; ...
What? This is a quick note on how to reduce a whole bunch of CSS into a single line without unnecessary spaces and new lines. Why? What I have:
#copyright a{
margin: 10px 0 0 85px;
box-shadow: ...
... yields list of [1,2,3,4,5]
Replace any multiple spaces with a single space:
v_MyString = "Hello World!";
v_FormattedString = v_MyString.replaceAll("[ ]+"," ",false);
// yields Hello World!
...
... $v_Output = preg_replace("/[^a-z0-9\_]/", "_",$v_Output);
// replace any consecutive underscores to a single one (eg. "my_____test" yields "my_test")
$v_Output = preg_replace("#((\_))\\2+#", ...
... search with the first parameter being the text to search for (can be a range) and the second the string to search (in this case a single cell value).
Sheet2!$A$1:$A$4 is the range of words to find from ...
... size of about 11Mb. In order for an import process to work, the import would only accept XLS files no greater than 1Mb. So our script has to split a single spreadsheet into multiple worksheets of 3000 ...
... %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance force
; --------------------------------------------------------------------------------------
; Set program Defaults
; --------------------------------------------------------------------------------------
Title ...
... of using MD5 in an encryption task.
Why?
I'm trying to create an ETag for a synchronization process between Zoho Creator and Zoho CRM. Combining all the fields to compare into a single field can' ...
What?
This is a very quick note with the code to retrieve the full day name from a date (eg. "Monday").
Why?
If I use the toString() function to get the day, it only returns the first 3 letters ...
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.