cancel
Showing results for 
Search instead for 
Did you mean: 

Table row count in ALP Fiori Element

ravi_sirigiri
Participant

Hi,

How to display the Analytical List Page table rows count on top of table? Please see the attached document alp-table-count.png (highlighted in yellow).

Is it possible to change the visual filter Chart Title in ALP? please see the attached visual-filter-chart-title.png

Thanks,

Ravi

Accepted Solutions (1)

Accepted Solutions (1)

MioYasutake
Active Contributor
0 Kudos

Hi ravi.sirigiri,

1. Row count can be added by annotation UI.HeaderInfo.TypeNamePlural.

https://sapui5.hana.ondemand.com/#/topic/cce93e6f067a4133a8430c4f5d7b8fc7.html

If your OData is based on CDS View, add below annotation before view definition.

@UI: { 
    headerInfo: { 
        typeName: 'Sales Order Item', 
        typeNamePlural: 'Sales Order Items'
    }
}
define view xxx as select from xxx

2. The following question looks similar to yours.

https://answers.sap.com/questions/13318101/want-to-change-the-dimension-and-measure-name-in-a.html

Regards,

Mio

ravi_sirigiri
Participant
0 Kudos

Hi Mio Yasutake,

Thanks for the solution. It displays the text with the count.

Can we display the text dynamically ? Based on visual filter, I wanted to display the filter text and it's count of orders. Please provide your inputs.

Thanks,

Ravi

MioYasutake
Active Contributor
0 Kudos

Hi Ravi,

I don't think it is possible to show the text dynamically as typeNamePlural attribute accepts only literals.

Answers (0)