Skip to Content
0
Jul 10, 2018 at 03:21 PM

SAPUI5 (Hybrid App) Can't create entity offline

135 Views

I have the following SAP UI5 snipper to create a JobSet entity.


This works online but not offline.

oModel.create("/JobSet", oEntry, {

success: function(oData, oResponse) 

{

self.jobId = oData.JobId;

},

error: function(oError) {

}

});