What do I do if a custom fixed-choice list (FCL) isn't showing up in the Sales Dashboard?

If you've added a fixed-choice list (FCL) to the Sales Dashboard layout and it's not showing up, then check to see if the FCL field is mapped to the template /singleSelectFclTemplate.

Suppose, for example, we've created a Current Stage FCL (CurrentStage_c) and added it to the Lead layout. Here's how you can fix the mapping:

  1. Open the Lead layout in Oracle Visual Builder Studio.
  2. Click the JSON tab.
  3. Find the Dashboard Layout section /dashboardLayout.
  4. In the displayProperties section in /dashboardLayout, find the attribute. In this example, CurrentStage_c.
  5. Add a fieldTemplateMap to the attribute.
    "/dashboardLayout": { // -----<----- Dashboard Layout entry
    
     "<some layout name>": { -----<----- New layout created for the table
    
     "layoutType": "table", ....
    
     "layout": {
    
       "displayProperties": [
    
           {  
    
            attribute 1....
    
           },
    
          {
    
           attribute 2....
    
          },
    
          "CurrentStage_c", -----<----- Entry for the new custom attribute
    
          <more attribute entries>
    
        ]
    
       },
    
       "usedIn": [
    
        ....
    
       ],
    
       "fieldTemplateMap": {
    
        ... other fieldTemplateMaps.... "CurrentStage_c": "/singleSelectFclTemplate" -----<----- ADD THIS
    
       }
    
      }
    
     }