Semantical date ranges are a powerful feature that allows users to filter data using dynamic date values such as “Last 30 Days” or “Next Week”. For List Report Pages, enabling this is straightforward by following SAP’s official guide. However, enabling date ranges in Overview Pages requires a slightly different approach.
To activate semantical date ranges in Overview Pages, you need to modify the manifest.json. Unlike List Report Pages, you must configure the “sap.ovp” section and adjust the filterSettings.
Here’s the configuration you need to add:
…
“sap.ovp”: {
…
“filterSettings”: {
“dateSettings”: {
“useDateRange”: true
}
}
}
}
This provides a more flexible and dynamic filtering experience, making it easier for users to access relevant data quickly.
Good luck with your implementation!