Hi vijay,
I am using Public Service URL
I can get the list of BusinesspartnerCollection .But my problem is when I click on seleted businespartner I want to get the relavant Salesorder list in Detail page in Table Format.
So, when I click on I am using below code
collectionListTap : function(evt){
this._showDetail(evt.getSource());
},
_showDetail : function (item) {
// navigate to detail page
sap.ui.getCore().getEventBus().publish("nav", "to", {
id : "Detail",
data : {
context : item.getBindingContext()
}
});
// tell detail to update
sap.ui.getCore().getEventBus().publish("app", "RefreshDetail", {
context : item.getBindingContext()
});
},
But how can I bind salesorder list to in Detail page?
Thanks&Regards
Sridevi