cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

oDATA Model - getData() - null

Former Member
0 Likes
4,587

Hi,

I have big troubles with calling oModel.getData() - I'm always getting null - but the view from which I'm getting the model shows the data, and also in chrome debugger I can see data inside oModel, this is screenshot from my application:

I've tried also debug SAP demo application for purchase approval and there is only one little difference:

sPath shows PurchaseOrderID for my code - which is first column in my collection, but SAP model shows /PurchaseOrder collection - the name of the collection.

Then If I call oModel.getData() - I got null.....my model is connected to GW service.

Many thanks Jiri

View Entire Topic
Former Member

Did you try model.oData ? It'd list out the entire data in the model. getData() takes an argument sPath & anyhow getData() is deprecated. try model.getProperty(sPath);

Former Member
0 Likes

Hi Sakthivel

Actually I am puzzled by this. I would expect that getData will work to be consistent with JSONModel to get all data.

-D

Former Member