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:
- Open the Lead layout in Oracle Visual Builder Studio.
- Click the JSON tab.
- Find the Dashboard Layout section
/dashboardLayout
. - In the displayProperties section in
/dashboardLayout
, find the attribute. In this example,CurrentStage_c
. - 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 } } }