I am currently developing a splitAPP that would reqiure data rendered in Tables and three unique Chart types.
I am considering using oDATA for CrUD. Currently I use xsjs files with SQL Script for Create and Retrieve the json object needed to update these Views through service calls eg var oModel2 = new sap.ui.model.json.JSONModel("services/topTenCoysPull.xsjs");.
For the most part, the oDATA examples I see have parallel implementations, usually an oDATA call alongside a Table, Very good for introductory tutorials, but real life Math problems are always more complex than what the teacher illustrated, hence the question.
How would you approach implementing an odata call to feed different views , a bubbleChart, a two Item DonotChart a BarChart and a Table.
and it is important to note that aggregatioin needs to be perfomed on this Data somewhere to fit the needs groupedby and some fields are summed or counted.
ID StaffName Company Value1 Value2 Value3 Date
01 Hardin Google 2 6 5
02 Kyle Google 4 4 3
03 Steve Google 2 6 5
04 Bullocks Netflix 6 3 1
05 Haran Netflix 2 9 2
06 Bullocks Netflix 6 3 4
07 Bullocks Netflix 2 3 5
08 ThinkPad SNCF
To it more simple here would be the kind of information I want to pull
- top 10 Best performing Company- BAR CHART
- Average value of Company perfomance for year 1990 BUBBLE CHART
- Account segmentation - Companies more than 10 years/ New Companies DONOT CHART
- and yes a Simple List that shows only company names on Master and shows Staff of company on Details