Blog tagged as Coding

How to create Mass Acction Custom Buttons in CRM with Deluge functionality

01/25/2024 06:30 PM - By Jesus Sosa - Comment(s)
The "rec" is the collection variable for IDs

idlist = rec.toList("|||");
//
for each  record in idlist
{
    unirque_record_ID = record ;
}
//

Creating Invoices from CRM Deals module

01/17/2024 12:16 PM - By Jesus Sosa - Comment(s)

deal = zoho.crm.getRecordById("Deals",dealid);

accountlookup = deal.get("Account_Name");
crm_accountid = accountlookup.get("id");
crm_accountname = accountlookup.get("name");
books_organizationid = "XXXXXXXX";
books_contactcriteria = {"contact_name...

Zoho Creator Navigational URLs

12/18/2023 10:51 AM - By Jesus Sosa - Comment(s)
Listed below are the URLs that are used to navigate or do certain actions in Zoho Creator. Please note that all these URLs will work only within the application and not in permalinks and embedding.

S. NoURLDescription
1#Script:page.backNavigates to the previous URL loaded in the browser's location bar...

Style based URLs for Embedded forms 

12/18/2023 10:51 AM - By Jesus Sosa - Comment(s)

In this topic we list out the parameters used in customizing the look and feel of Zoho Creator forms and reports. These parameters can be applied to the Forms and Reports embedded in your Pages.

Form Properties

DescriptionParameter/Value
Display form without form headerzc_Header=false
Form background co...

Pause a Deluge code for 'X' seconds

12/11/2023 11:20 PM - By Jesus Sosa - Comment(s)
Sleep can be used in a Node JS function, such as below
  1. /**

    * author: vincent.balfe@cloud-connect.ie

    * @param seconds: literal - to be converted to ms

    * @return JSON IO - SUCCESS or FAIL

    */

    module.exports = async ...