• Features
    • Column
      • FieldAx Help Center
    • Column
      • Text
      • Customer 360
      • Estimates
      • Service Plan
      • Dispatch Board
      • Invoicing
      • Inventory Management
    • Column
      • Text
      • Mobile App
      • Job
      • Equipment History
      • Text
      • Calendar
      • e-Signature
    • Column
      • Text
      • Custom Reports & Dashboards
      • Marketplace
      • THIRD PARTY INTEGRATIONS
      • Twilio SMS
      • Payments(Stripe & Paypal)
      • Quickbooks
    • Column
      • Text
      • Customer Portal
      • Custom Objects & Fields
      • Page Layouts
      • Automation
      • API Integrations
  • Industries
  • Why FieldAx?
  • Resources
    • 11.INVOICE
    • Case Study
    • Visual Stories
  • Login
    • Features
      • Column
        • FieldAx Help Center
      • Column
        • Text
        • Customer 360
        • Estimates
        • Service Plan
        • Dispatch Board
        • Invoicing
        • Inventory Management
      • Column
        • Text
        • Mobile App
        • Job
        • Equipment History
        • Text
        • Calendar
        • e-Signature
      • Column
        • Text
        • Custom Reports & Dashboards
        • Marketplace
        • THIRD PARTY INTEGRATIONS
        • Twilio SMS
        • Payments(Stripe & Paypal)
        • Quickbooks
      • Column
        • Text
        • Customer Portal
        • Custom Objects & Fields
        • Page Layouts
        • Automation
        • API Integrations
    • Industries
    • Why FieldAx?
    • Resources
      • 11.INVOICE
      • Case Study
      • Visual Stories
    • Login
FieldAx Help Site

FieldAx Help Site

  • Features
    • Column
      • FieldAx Help Center
    • Column
      • Text
      • Customer 360
      • Estimates
      • Service Plan
      • Dispatch Board
      • Invoicing
      • Inventory Management
    • Column
      • Text
      • Mobile App
      • Job
      • Equipment History
      • Text
      • Calendar
      • e-Signature
    • Column
      • Text
      • Custom Reports & Dashboards
      • Marketplace
      • THIRD PARTY INTEGRATIONS
      • Twilio SMS
      • Payments(Stripe & Paypal)
      • Quickbooks
    • Column
      • Text
      • Customer Portal
      • Custom Objects & Fields
      • Page Layouts
      • Automation
      • API Integrations
  • Industries
  • Why FieldAx?
  • Resources
    • 11.INVOICE
    • Case Study
    • Visual Stories
  • Login

Quick Start Guides

11
  • Getting Started
    • Installing the FieldAx Package
    • Pre-Installation Requirements
  • Essential Setup
    • Troubleshooting Common Dispatch Board Issues
    • Set Up Assignment Colors
    • Set Up Dispatch Board Views
    • Set Up Dispatch Board Columns
    • Configure Inventory Locations
    • Configure Job Status and Categories
    • Configure Job Types
    • Set Up Regions
    • Set Up Users

Workforce Management

6
  • Best Practices for Workforce Setup
  • Add Training History to Service Engineers
  • Add Timeoff to Service Engineers
  • Add Skills to Service Engineers
  • Create Service Engineers
  • Workforce Overview

Account Management

11
  • Account Reports and Analytics
  • Troubleshooting Account Issues
  • Account Management Best Practices
  • Schedule Job from Service Plans
  • Create Service Plan
  • Create Installed System/Asset
  • Add Documents to Accounts
  • Add Account Communication Log
  • Add Contacts to Account
  • Create Customer
  • Customers/Accounts Overview

Job Management

6
  • Get Ready for Scheduling with Dispatch Board
  • Job Reports and Analytics
  • Troubleshooting Assignments
  • Dispatch Service Engineer
  • Create/Schedule Job
  • Job Overview

Mobile App

11
  • Mobile App Common Issues and Solutions
  • Mobile App Best Practices
  • Close Job
  • Send Service Report
  • Get Digital Signature
  • Log Your Time
  • Consume Parts
  • Create/Manage Product Requests
  • My Inventory
  • Day Book
  • FieldAx Mobile App

Inventory Management

12
  • Inventory Reports and Analytics
  • Inventory Best Practices
  • Receive Parts
  • Transfer Parts
  • Raise Product Request
  • View Stock Details
  • Inventory Reports and Analytics
  • Troubleshooting Inventory Common Issues
  • Inventory Best Practices
  • Create Serialized Inventory
  • Inventory Overview
  • Create Inventory Records

Billing

6
  • Troubleshooting Invoice Issues
  • Invoice Best Practices
  • Invoice Tracking and Management
  • Preview and Send Invoice
  • Create Invoice
  • Invoice Overview
View Categories
  • Home
  • FieldAx Help Center
  • Set Up Dispatch Board Columns

Set Up Dispatch Board Columns

Understanding Column Configuration

Dispatch Board columns determine what information dispatchers see for each job, enabling quick assessment and efficient scheduling decisions.

Column Planning

Before configuration, identify essential information:

Critical Job Information

  • Job number/identifier
  • Date and time
  • Service type/category
  • Current status
  • Customer name
  • Location details

Optional Information

  • Priority level
  • Assigned engineer
  • Duration estimate
  • Special instructions
  • Contract coverage

Configuring Dispatch Board Columns

Step 1: Access Custom Metadata Types

Navigate to the configuration area:

  1. Go to Setup (gear icon)
  2. In Quick Find, search for “Custom Metadata Types”
  3. Click Custom Metadata Types
  4. Locate and click Settings

Step 2: Access DB Settings

Find the dispatch board configuration:

  1. In the Settings metadata type
  2. Click Manage Records
  3. Look for DB Settings
  4. Click Edit on the DB Settings record

Step 3: Understanding the JSON Structure

The column configuration uses JSON format:

json

[

  {

    “Field”: “Display Label”,

    “Value”: “API_Field_Name”

  }

]

Structure Explanation:

  • Field: What users see as column header
  • Value: Actual Salesforce field API name
  • Array format allows multiple columns
  • Order matters for display sequence

Step 4: Configure Standard Columns

Enter the standard column configuration:

DB Table Columns field:

json

[

  {

    “Field”: “JOB NO”,

    “Value”: “Name”

  },

  {

    “Field”: “DATE AND TIME”,

    “Value”: “fax__Planned_Visit_Date_Time__c”

  },

  {

    “Field”: “CATEGORY”,

    “Value”: “fax__Visit_Type__c”

  },

  {

    “Field”: “STATUS”,

    “Value”: “fax__Status__c”

  }

]

This configuration displays:

  • JOB NO: The job number/identifier
  • DATE AND TIME: Scheduled visit time
  • CATEGORY: Type of service
  • STATUS: Current job status

Step 5: Adding Additional Columns

To add more columns, extend the JSON:

json

[

  {

    “Field”: “JOB NO”,

    “Value”: “Name”

  },

  {

    “Field”: “DATE AND TIME”,

    “Value”: “fax__Planned_Visit_Date_Time__c”

  },

  {

    “Field”: “CATEGORY”,

    “Value”: “fax__Visit_Type__c”

  },

  {

    “Field”: “STATUS”,

    “Value”: “fax__Status__c”

  },

  {

    “Field”: “CUSTOMER”,

    “Value”: “fax__Customer__r.Name”

  },

  {

    “Field”: “PRIORITY”,

    “Value”: “fax__Priority__c”

  },

  {

    “Field”: “DURATION”,

    “Value”: “fax__Estimated_Duration__c”

  }

]

Step 6: Save Configuration

After entering the JSON:

  1. Click Save
  2. Configuration takes effect immediately

Advanced Column Configuration

Related Object Fields

Display data from related records:

json

{

  “Field”: “CUSTOMER CITY”,

  “Value”: “fax__Customer__r.ShippingCity”

}

Relationship Syntax:

  • Use __r for relationships
  • Add .FieldName for specific field
  • Supports multiple levels

Formula Fields

Include calculated values:

json

{

  “Field”: “TIME UNTIL DUE”,

  “Value”: “fax__Hours_Until_Due__c”

}

Custom Fields

Add organization-specific fields:

json

{

  “Field”: “REGION”,

  “Value”: “Region__c”

}

Column Best Practices

Essential Columns

Always include:

  • Job identifier
  • Date/time
  • Status
  • Customer reference
  • Service type

Performance Considerations

  • Limit to 7-10 columns
  • Avoid complex formulas
  • Minimize related object queries
  • Use indexed fields when possible

User Experience

  • Order by importance
  • Use clear labels
  • Consistent naming
  • Appropriate column width
Updated on 07/10/2025

What are your Feelings

  • Happy
  • Normal
  • Sad
Share This Article :
  • Facebook
  • X
  • LinkedIn
  • Pinterest
Set Up Dispatch Board ViewsConfigure Inventory Locations

© 2025. FieldAx Help Site