カスタムの固定選択リスト(FCL)が営業ダッシュボードに表示されない場合はどうすればよいですか。
セールス・ダッシュボード・レイアウトに固定選択リスト(FCL)を追加し、表示されない場合は、FCLフィールドがテンプレート/singleSelectFclTemplate
にマップされているかどうかを確認します。
たとえば、現在のステージFCL (CurrentStage_c)を作成し、リード・レイアウトに追加したとします。 マッピングを修正する方法を次に示します:
- Oracle Visual Builder Studioでリード・レイアウトを開きます。
- 「JSON」タブをクリックします。
- 「ダッシュボード・レイアウト」セクション
/dashboardLayout
を検索します。 /dashboardLayout
のdisplayPropertiesセクションで、属性を検索します。 この例では、CurrentStage_c
です。- fieldTemplateMapを属性に追加します。
"/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 } } }