Assuming list is required, the following 200 results were found.
To: Microsoft Windows 10 Pro v10.0.18362 What? This is a list of apps that if run via the run command, or used in a desktop shortcut, or that you want to include in automation software such as AutoHotkey, opens any specific Windows OS settings page....
client's Zoho Books instance opened in a browser. the circled part is the domain of the Zoho app we are accessing: Here is a list of the datacenters that I know of: AU = Australia (zoho.com.au) CN = China (zoho.com.cn) EU = Europe (zoho.eu) IN = India...
the version of the Zoho Extension Toolkit (eg. 0.23.6) Create a project In the terminal, type zet init You will be given a list of Zoho services, use the arrow up/down keys to select “Zoho Creator” and press the return/enter key. Give the project a...
This is a quick article I use to list step by step on how to set up a custom domain for a Zoho Creator customer portal. In this example, we are going to use a subdomain of a company which has the domain joellipman.com. Why? This took me a bit of going...
in l_Users { if(m_User.get("Job_Title").equalsIgnoreCase("CFO")) { l_ApprovalUsers.add(m_User.get("id")); } } // // check list of IDs if(l_ApprovalUsers.size() > 0) { // // reset multi-user lookup field (clear out values) v_SearchCriteria =...
// // return Zoho response to Shopify return {"crmAPIResponse":m_Response}; Save the function Return to the functions list and hover your mouse over the function you just created until an ellipsis/3 dot icon appears > Click on it and select REST API....
fields (checks mandatory fields have been entered) for example: // // check mandatory fields have been entered l_Errors = List(); if(isnull(input.Record_Name)) { l_Errors.add("- Record Name"); } if(l_Errors.size() > 0) { alert "Please enter the...
returns some of the records but omits others. Why? The use-case was that we were creating a custom related list on a Zoho Finance > Sales Orders module but it wasn't finding all the Quotes related to this Sales Order. How? The quick answer is buried in...
be done with "Mass Update") to give them the applicable tax rates: Browse to a CRM product record (you can do mass edit on a listview of products but for demo purposes, we'll do just one) Under Price Information, edit the field "Tax" (multi-select) and...
input.Title; The code on user input for Audit_Change field would look something like: // get given eTag l_FieldsToMonitor = List(); l_FieldsToMonitor.add(input.Title); l_FieldsToMonitor.add(input.Contact); l_FieldsToMonitor.add(input.Account);...
"Mondays" then to click a button which copies it to the remaining working days. How? So I have a form with 6 subforms which list staff/employee shifts from Monday to Saturday. The form I have looks something like the following: and displays as something...
and check it out as well as the client to go in and confirm the change was successful...: For this strange fix, I'm going to list step by step but using the "Google Chrome" web browser: Login to ZohoCRM > Setup > Templates > Inventory Click on the name...
number or at least to remove the trailing zeros. I could have added this to my Zoho Deluge - Some Useful Regular Expressions list but I felt this deserved its own article. Why? A client wanted the discount displayed on a template and if they gave 10%...
= Map(); m_Participant.put("type", "lead"); m_Participant.put("participant", 98765432109876543); l_Participants = List(); l_Participants.add(m_Participant); m_ScheduleMeeting.put("Participants", l_Participants); // // with a reminder 5 minutes before...
connected to my home PC. The way to do this might be different for you depending on the components of your PC. So here's a list of what I used: Type Component Quantity Price (GBP) Reused components Monitor Acer K242HL 2 ~@£100.00 (at time of purchase)...
Zoho Inventory and... eBay. Out-of-the-box, and at-time-of-print, Zoho Inventory only syncs eBay one way, in other words, listings on eBay get downloaded to Zoho Inventory but not vice-versa. Then there's an added delay of 4 hours. Then item specifics...
SSL Sites" Click on "Browse Certificates" then select the certificate for the domain you in the popup that appears (it's a list of the uploaded certificates) Finally, click on "Install Certificate" and then click on the "Refresh Site" button in the...
A quick article on how to upload an image to the product/item listing in Zoho Inventory. Why? We're enhancing the out-of-the-box integration from eBay to Zoho Inventory bespoke for a customer. We want the photo on eBay to be downloaded and uploaded to...
HH:mm")); m_Params.put("tracking_number","N/A"); l_UrlParams = List(); l_UrlParams.add("salesorder_id=" + v_SalesOrderID); l_UrlParams.add("package_ids=" + v_PackageID); l_UrlParams.add("is_delivered=true"); l_UrlParams.add("organization_id=" +...
existing custom fields (not required but just in case) l_CustomFields = invoice.get("custom_fields"); l_NewCustomFields = List(); for each m_CustomField in l_CustomFields { // exclude existing custom field payment mode and date l_DontCopyFields =...