リード概要見出しをアカウント階層サブビューから削除するにはどうすればよいですか?
「リード要約」見出しを削除する方法を次に示します。

- Oracle Visual Builder Studioで、accounts-detailページに移動し、SubviewContainerLayoutを複製します。
- セクション・テンプレート「アカウント階層サブビュー・テンプレート」 (accountHierarchySubviewTemplate)を複製します。 テンプレートに新しいID (accountHierarchySubviewTemplate2など)を指定します。
-
ページの「JSON」タブのSubviewContainerLayout sectionTemplateMapで、新しいIDで
"hierarchy": "accountHierarchySubviewTemplate"
を更新:"hierarchy": "accountHierarchySubviewTemplate2",
.「階層」のエントリが1つしかなく、displayPropertiesに「階層」が含まれ、他の新規エントリが含まれていないことを確認します。
- ページHTMLファイルで、複製したセクション・テンプレートのcx-hierarchyフラグメントに次の変更を加えます:
- HierarchySubViewTableLeadLayoutのエントリを削除します。 配列で、IDが
- $page.variablesを$base.variablesに置き換えます
- 次のリソース・バンドルをページJSONに追加して、$translationsが有効であることを確認:
"translations": { "partiesResourceBundle": { "path": "faResourceBundle/nls/oracle.apps.cdm.foundation.parties.resource" }, "insideSalesGenBundle": { "path": "faResourceBundle/nls/oracle.apps.crmCommon.insideSales.resource" } }
テンプレートの更新されたセクションは次のようになります:
<template id="accountHierarchySubviewTemplate2"> <oj-vb-fragment bridge="[[vbBridge]]" name="oracle_cx_fragmentsUI:cx-hierarchy"> <oj-vb-fragment-param name="resource" value="[[ {name: 'accounts', id: $base.variables.id, puid: $base.variables.puid} ]]"></oj-vb-fragment-param> <oj-vb-fragment-param name="style" value="[[ 'subview' ]]"></oj-vb-fragment-param> <oj-vb-fragment-param name="modes" value="[[ [{id: 'table', title: $translations.partiesResourceBundle['AltTxt.Treetableview'], icon: 'oj-ux-ico-list', isDefault: true}, {id: 'viewer', title: $translations.partiesResourceBundle['AltTxt.Gridview'], icon: 'oj-ux-ico-networking', isDefault: false}] ]]"></oj-vb-fragment-param> <oj-vb-fragment-param name="types" value="[[ {style: 'tab', items: [{id: 'HierarchySubViewTableDefaultLayout', title: $translations.insideSalesGenBundle['Header.DefaultView'], modeId: 'table', isDefault: true}, {id: 'HierarchySubViewTableOpportunityLayout', title: $translations.insideSalesGenBundle['MenuItem.OpportunitySummary'], modeId: 'table', isDefault: false}, {id: 'HierarchySubViewTableInteractionsLayout', title: $translations.insideSalesGenBundle['MenuItem.InteractionSummary'], modeId: 'table', isDefault: false}]} ]]"></oj-vb-fragment-param> </oj-vb-fragment> </template>