cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to disable table personalization in Fiori Elements?

GuyF
Active Participant
0 Kudos

Hi,

I'm building a Fiori Elements app, and I have several tables where there's no need for the personalization button. Is it possible to disable it?

Thank you.

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

If you are using a smarttable, you can disable with the "useTablePersonalisation" property:

<smartTable:SmartTable 
		id="smartTable_ResponsiveTable"
		smartFilterId="smartFilterBar" 
		tableType="ResponsiveTable" 
		editable="false"
		useVariantManagement="false"
		useTablePersonalisation="false" 
		showRowCount="true"
		useExportToExcel="false" 
		enableAutoBinding="true">
	</smartTable:SmartTable>

Reference: https://sapui5.hana.ondemand.com/1.32.6/docs/guide/19531496ec144fa1bc4adab5bc08527c.html

GuyF
Active Participant
0 Kudos

Thanks for your reply, although this is for freestyle SAPUI5 app, and mine is a Fiori Elements app. I tried to add this property to the table, but I got a syntax error that the property is not allowed.

MioYasutake
Active Contributor
0 Kudos

According to the UI5 SDK, table personalization can be disabled by manifest.json if the app is based on OData v4.

https://sapui5.hana.ondemand.com/#/topic/3e2b4d212b66481a829ccef1dc0ca16b

GuyF
Active Participant
0 Kudos

My app is not based on OData v4, and I also want to disable it only on tables in the Object page. For the List Report page I want to keep this enabled.