Assuming first is required, the following 207 results were found.
is a Zoho Toolkit to run some checks on the email deliverability for a customer: https://zohomail.tools/#runChecks. How? So first I'll outline the steps to set this up in ZohoCRM and then how to troubleshoot issues with this. One important thing to note...
File, Local Image, Subform Row ID (prevents duplicates). Note: I create the form then add it as a subform on the parent form first, then add the lookup to the ticket field on the subform so that I get the popup to enable bi-directional rather than via...
server and setup a server to server API connection to your Zoho Creator instance. Source(s): Zoho Creator: Create your first widget Zoho Community: Zoho Creator: Get a URL parameter inside a widget Zoho Creator: JS API documentation Joel Lipman: Zoho...
the customer has already been setting their Zoho environment up and the Wordpress site has the more information. 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,...
then the following code won't be able to check and restore them. The Code Snippets: The Shopify Order Update notification First create a CRM function called Shopify - Webhook - Order Notification. It's a standalone function but you'll need to hover the...
// get list of subfolders by name (creates a timestamped duplicate if exists so need to check if it exists first) // https://workdrive.zoho.com/home/{dunno_id}/teams/{dunno_id}/ws/{parent_id}/folders/files m_SubfolderNames = Map(); r_Subfolders =...
me all the deals where the tag is empty but the contact record wasn't. There is an additional/repeat action to add tags; the first attempts to copy over the color on a new tag; the second is if this fails to copy over the color (because there is an...
function is needed as the pipeline was not displayed on the canvas view of the deal record but it was on the edit page. How? First we're going to add some element IDs to the canvas view page on each of the tabs. Then we'll make an OAuth function that...
// The access token is the Admin API token received when installing the custom app for the first time m_Header.put("X-Shopify-Access-Token",r_ShopifyAPI.Access_Token.trim()); // v_Endpoint = v_Shopify_BaseURL + "/admin/api/" + v_ShopifyApiVersion +...
FCK Editor You can download it for free from http://www.joomlafckeditor.com/ but you will need to register on their site first.
Verify that both COPY FROM and RECORD are the same drives Select the ADVANCED tab Check that COPY SOURCE CD TO HARD DRIVE FIRST is selected Click on COPY and wait for the CHECK MEDIA dialog box to appear Insert your blank disk into the drive With the...
The issue here was that although all the prices lost their float/decimal and were rounded up to the nearest integer... At first we thought this was due to installing a Virtuemart UK Credit Card Payment Module (vm-ukcreditcard). A lot of forums were...
control panel (ACP). On the General tab, look under Board Configuration and click on 'Board Settings'. The Site name is the first field in the right panel.
Thought I'd put this error in here and how I fixed it. Basically because firstly I don't want to have to create an account on someone else's forum just to post my answer and secondly because my solution is a "cowboy fix" rather than the other...
We want the report to open with the specified day expanded and the remaining days that week to be collapsed (hidden). The first time I did this, I couldn't expand the remaining days so don't forget to tick the option "display can be toggled by this...
that ("working backward") If the problem is abstract, try examining a concrete example. Try solving a more general problem first.
I've set some tablix headers but when I request the same report in PDF format, the tablix headers only appear once on the first page. Every subsequent page simply displays the report header (which does not include the tablix header... obviously). I...
didn't get me very far until I decided to write this article: DAYOFWEEK(myDate, 1) or WEEKDAY(mydate, 1) MySQL code for first and last day of week. Day of Week starting on Monday.
Trim in T-SQL and SSIShttps://www.joellipman.com/articles/microsoft/ssis/trim-in-t-sql-and-ssis.html
Some methods of removing trailing spaces, tabs, carriage returns and line feeds (new lines). How? First in Transact-SQL: SELECT RTRIM( REPLACE( REPLACE( REPLACE( @myString, CHAR(9), ''), CHAR(10), ''), CHAR(13), '') ) -- CHAR(9) = Tab -- CHAR(10) = Line...
FOR /F "tokens=2,3* delims=_" %%A IN ('DIR InitializingFile*') DO ECHO %%A -- yields: 123.csv 456.csv So that's our first loop, here's what the second loop should do: -- the following loops through a line and separates by period (.) FOR /F "tokens=1,2*...