I'm starting to look into adding offline functionality to a mobile app developed in SAP Web IDE on SAP Cloud Platform.
There's some standard SAP functionality that allows an offline data store to be created by simply updated the Manifest.json
"sap.mobile": {
"_version": "1.1.0",
"definingRequests": {},
"stores": [
{
"name": "ZSV_SURVEY_SRV",
"serviceRoot": "/SAPUI5-ABAP-SFI/",
"definingRequests": {
"SurveySet": "/Surveyset"
}
}
]
However, the actual oData used would be far too large to hold offline in practice, so what are the other options ? Can the data be filtered ? and how ?
Is jquery.sap.storage still used?