Tuesday, July 4, 2017

Integrate GETTY Images API to Zoho Creator

Getty Images is among the world’s leading creators and distributors of award-winning still imageryvideomusic and multimedia products, as well as other forms of premium digital content, available through its trusted house of brands, including iStock© and Thinkstock©.
With its advanced search and image recognition technology, Getty Images serves business customers in more than 100 countries and is the first place creative and media professionals turn to discover, purchase and manage images and other digital content. Its best-in-class photographers and imagery help customers produce inspiring work which appears every day in the world’s most influential newspapers, magazines, advertising campaigns, films, television programs, books and online media.
With its search image engine you can call via API any kind of images GETTY has access in its database and store them inside your Zoho Creator application to enhance the user experience.

//GETTY IMAGES
    imageURI = "";
    if (yoursearchword.length()  >  0)
    {
        //yoursearchword =
        imageURI = thisapp.API.gettyImage(yoursearchword);
    }

You can now get all the API script needed to integrate GETTY Images and Zoho Creator from our Zoho Library. If you are still not a Zoho guru we can set it up for you if you prefer.

Please, visit our Zoho Services page for more details.

Tuesday, June 27, 2017

Need to Adjust Pricing based on Qty in Zoho CRM Quotes Module

Zoho CRM is one of the most powerful CRM platforms in the market. A common process used by maverick entrepreneurs is the creation of Quotes under each Contact or Account as part of the Potential opportunity stage cycle.

Each Quote allows you to add multiple products so your Client can get an estimate on the cost with a very granular description of all the pricing and components of your product or service. However, when you manage multiple products with a different price tree structure the complexity can easily become a hassle to handle when different Qty´s have multiple prices.
ZohoCRMQuotes
With the use of a simple custom function integration and the Price Books module in Zoho CRM you can incorporate an update task workflow and trigger automated price updates to the Quotes Modules based on the Qty entered into the item row.

There is a catch! Prices will not update instantly on the Edit view, but will reflect the modification once the page is updated. Therefore, if your pricing structure is a complex maze of prices for different Quantities you are better off letting an automatic script handle your pricing calculations.

You can find the script needed to create the custom function in our Zoho Library or if you prefer we can set it up for you directly.  Visit our Zoho Services page to find the integration needed.

Saturday, June 3, 2017

Compress Your Zoho Images 33% or more with Cloudinary API

cloudinary
Cloudinary is the image back-end for web and mobile developers. An end-to-end solution for all your image-related needs.

Use Cloudinary's image service instead. With simple integration to Zoho Creator you'll get immediate access to cutting-edge image capabilities. Save R&D time, get to market faster, reduce your IT costs and improve your viewers experience.

What makes Cloudinary stand out?

  • Securely upload images or any other file, at any scale from any source. API for fast upload directly from your users' browsers or mobile apps.
  • Store as many images as needed. Our image hosting service stores images privately and safely with automatic backup and historical revisions.
  • Manage your media library interactively with our Digital Asset Management solution or via APIs. Gain insights using advanced analytics.
  • Manipulate your images dynamically to fit any graphics design. Apply effects, resizing, cropping, face detection, watermarks and tons of image processing capabilities.
  • Get your images delivered lightning-fast, responsive and highly optimized for any device in any location. Images are served via Akamai’s worldwide CDN.
Interested on integrating this API to your zoho creator application?

Integration has been developed and its readily available as a one time Add-On purchase or inside our Leverage Zoho Library to all its members.

Wednesday, February 8, 2017

How to properly set subforms in Zoho Creator Part 2


To build a robust Order form in zoho creator you need to be able to automatically "fetch" the information about a product and let the system pre populate the subform with pre existing data in the Products Table.

First, you need to have a Products form with all the relevant information about the Product. Price, Description, etc.

Second, you need to fetch the Product information based "On user input" inside the items Subform and add the below deluge scripting.

prodct  =  Products  [ID == row.Product];
row.Description = prodct.Description;
row.Price = prodct.Price;
row.Qty = 1;
if ((row.Price  !=  null)  &&  (row.Qty  !=  null))
{
    row.SubTotal = (row.Price  *  row.Qty);




Check How to properly set subforms in Zoho Creator Part 1

Tuesday, January 3, 2017

6 of the Most Popular Zoho Creator posts of 2016

SummaryTagsUrl
Zoho speeds up Innovation with mobile App CreatorZoho Creator, Online Database

https://www.creatorscripts.com/blogs/post/Zoho-speeds-up-Innovation-with-mobile-App-Creator/
Fetch Email Id Associated with a UsernameZoho Creator, onlinedatabase


https://www.creatorscripts.com/blogs/post/Fetch-Email-Id-Associated-with-a-Username/
How QR code and barcode scanning with Zoho Creator works?Zoho Creator, Barcode, QRCode


https://www.creatorscripts.com/blogs/post/How-QR-code-and-barcode-scanning-with-Zoho-Creator-works/
Zoho Creator Hack: Specify "OR"  or "AND" operators when setting criteria for displaying a viewZoho Creator, Views criteria


https://www.creatorscripts.com/blogs/post/Zoho-Creator-Hack-Specify-OR-%C2%A0or-AND-operators-when-setting-criteria-for-displaying-a-view/
Why Zoho Creator is winning the database war against MS AccessZoho Creator, MS Access


https://www.creatorscripts.com/blogs/post/Why-Zoho-Creator-is-winning-the-database-war-against-MS-Access/
How to properly set Subforms in Zoho Creator Part 1Zoho Creator, Subforms


https://www.creatorscripts.com/blogs/post/How-to-properly-set-Subforms-in-Zoho-Creator-Part-1/