• Home
  • Overview
  • Account
  • Contact
  • Service Plans
  • Job
  • Invoice
  • FieldAx Help Center
  • Dispatch Board
  • Job Type
  • Service Engineer
  • Work Calendar
  • Skill
  • Product
  • Price book entry
  • Pricebook
  • Inventory
  • Consumed Parts
  • Checklist
  • Feedback Response
  • Parts Required
  • Systems Included
  • Estimate
  • Product Request
  • Return Order
  • Freight
  • Assignments
  • Job Items
  • Holidays and TimeOff
  • Trainings
  • Service Regions
  • Time Cards
  • Installed Systems

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

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

Job Management

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

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

admin
Updated on 07/10/2025

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
Set Up Dispatch Board ViewsConfigure Inventory Locations

NovelLite Theme Powered By WordPress