Hi All,
We have created one simple dashboard which has 10 data sources. Outof 10 data sources 3 are the main BEx queries and remaining 7 are the copy of those 3 data sources. We have Region dropdown box and I am using below code in 'on select' so that when we select 'Region' then all 10 datasources will be filtered accordingly (fyi, we do not have 'Region' in any graph component).
DS_1.setFilterExt("Region", DROPDOWN_1.getSelectedValue());
-----
-----
DS_10.setFilterExt("Region", DROPDOWN_1.getSelectedValue());
When selecting 'Region' in dropdown box then I think all 10 datasources are hitting database to filter accordingly. So it is taking more time to see the data in dashboard for different Regions...My question is: Is there anyway all 10 data sources are executed for all regions initially and when we are using the dropdown box then it should take respective Region data from catche instead of hitting the database and execute all 10 datasources..??
(like input controls in webi)...
Thank you,
Ranjith.