cancel
Showing results for 
Search instead for 
Did you mean: 

Multi tab in FIORI always show 0 count

0 Kudos
98

Hi,
i have created a RAP based FIORI list report with multiple tab In the tab the count is always 0,(in all the tab)

actually i don't want to show  the count here.

even after setting the count as false in manifest.json and in the framework ,the 0 still appears.

ODATAV4  is generated using custom entity---->service definition-----> service binding 

any input is much appreciated 

NIYAZVETTUKALIQBAL_0-1744738849072.png

Each tab show different entity ( different details)

NIYAZVETTUKALIQBAL_0-1744739451344.png

we don't need to show any counts here, not even zero

 

 

Accepted Solutions (0)

Answers (1)

Answers (1)

suzanne_alivand
Explorer
0 Kudos

I think you need to remove below from child entities metadata extension :

@ui.headerInfo: {
  typeName: 'Purchase document item',
  typeNamePlural: 'Purchase document items'  
}

and add something like below facet:

: {
facet:[
// Purchase Document
{
label: 'Purchase Document',
type: #IDENTIFICATION_REFERENCE,
id: 'PurchaseDocumentCollectionFacet',
purpose: #STANDARD
},
// Items Section
{
label: 'Purchase Document Items',
type: #LINEITEM_REFERENCE,
id: 'PurchaseDocumentItemsLineItemReferenceFacet',
purpose: #STANDARD,
targetElement: '_PurchaseDocumentItem'
}
]
}