Implementing master-detail relationship using RESTful services
Summary
master-detailContent
Hello Gurus,
I am trying to implement a simple master-detail requirement to display orders as a master table in my web application (order no, date, customer name, address) along with order lines as a detail table displaying related information (Item no, Description, Qty, Rate, Amount). If a certain row is clicked in the master, the detail table should display items related to the order id selected previously.
These details are fetched from 2 different rest APIs and not data objects.
My problem is that I'm unable to display the order details within the page. Though I can see the call being made to the detail api in the network monitor (the values are fetched but not mapped to the order lines table service data provider)