I'm just starting with SAP FIORI app developing.
I created simple oData model for SAP user details, I implemented two methods:
get_entityset
- receives list of users with personal number and full nameget_entity
- receives more details of single user (by username).
When I call the service from browser all works fine. How do I call my get_entity
method when loading detail page of Master-Detail FIORI app. I used Master-Detail template from WebIDE, but only get_entitset
is called and detail screen uses only set data.
How should I define the data binding (in Detail controller I guess)?