Add and Configure Car Inspection Extension on Your Zoho Creator Page

Add and Configure Car Inspection Extension on Your Zoho Creator Page

Requirement

Include a car Inspection extension in your Zoho Creator application to assist in inspection and identification of the damaged components of a car.

Use Case

Imagine a car manufacturing industry that uses Zoho Creator application for various quality assurance related activities, such as Manufacturing Audit, Inspection, SPC, FMEA and so on. By adding the car inspection extension into their application, they can efficiently perform pre-delivery inspections of vehicles, ensuring that overall quality standards are met before handing them over to customers.

See how it works

Pre-requisites

Installing the Car Inspection Extension for Zoho Creator
  1. Search for and install the Car Inspection Extension for Zoho Creator from Zoho Marketplace. Learn how to Install and Manage Extensions.

Alternatively, you can also install Car Inspection Extension for Zoho Creator directly from Zoho Creator. Navigate to the Operations section > Application > Marketplace > Extensions and install it.

Steps to Follow

  1. Create a form with an subform with the following details to store the vehicle inspection information.

    Form Name

    Form Link Name

    Field Type

    Field Name

    Field Link Name

    Car Inspection

    Car_Inspection

    Date

    Date of Inspection

    Date_of_Inspection

    Single_Line

    Model

    Model

    Number

    Identification Number

    Identification_Number

    Subform

    • Single Line

    • Single Line

    Defects

    • Defective Part

    • Remarks

    Defects

    • Defective_Part

    • Remarks

  2. Note: The 'Defects' field must be added in the quick view and detailed view layouts of All Car Inspections report of the Car Inspection form for viewing the inspection details from the report.

  3. Navigate to the form properties and rename the 'Submit' button to 'Inspect'.

  4. Create a page named 'Inspection' and drag and drop the 'Car Inspection Extension' listed under the Installed category under the Widgets section in the left pane.

  5. Navigate to the page variables and add the following page variables to include required variables for the extension.

    Variable

    Data Type

    reportName

    TEXT

    recordID

    TEXT

    subFormLinkName

    TEXT

    damagedPartFieldLinkName

    TEXT

    remarksFieldLinkName

    TEXT

    redirectURL

    TEXT



  6. Configure the Page Script by adding the following script to the editor to supply data to the extension's parameters.
    1. input.reportName = "All_Car_Inspection"; // Report link name of the 'Car Inspection' form's report.
    2. input.subFormLinkName = "Defects";  // Field link name of the 'Defects' subform in the 'Car Inspection' form.
    3. input.damagedPartFieldLinkName = "Defective_Part";  // Field link name of the 'Defective Part' field in the 'Defects' Subform of 'Car Inspection' form.
    4. input.remarksFieldLinkName = "Remarks"; // Field link name of the 'Remarks' field in the 'Defects' Subform of 'Car Inspection' form.
    5. input.redirectURL="https://creatorapp.zoho.com" + zoho.appuri + "#Form:Car_Inspection";
  7. Create a workflow to execute on the successful submission of the Car Inspection form, then select the Record Event as Created. Name the workflow 'Open Extension' and click Create Workflow. This workflow will open the 'Inspection' page with car inspection extension.

  8. Click Add New Action > Deluge Script and add the following code to the Deluge editor.
    1. openUrl("#Page:Inspection?recordID="+input.ID, "same window");
  9. Create another workflow by selecting the Record Event as Created and Form Event as Field Rules. Name the workflow 'Hide Defects' and click Create Workflow. This workflow will hide the 'Defects' subform, as the values for this subform will be fetched from the extension's input.

  10. Click Add New Action > Hide fields and select 'Defects' Field from the dropdown.

See How It Works


  1. Car Inspection Extension
  2. Understand Extensions
  3. Install and Manage Extensions