cancel
Showing results for 
Search instead for 
Did you mean: 

Presentation of a query in different crosstabs

0 Kudos
196
I have a requirement to present the query in different formats. E.g. Query returns with 12 key figure values and I need to separate these 12 KFs in separate cross tabs.
E.g.
Query output in DS 1.
KF1KF2KF3KF4KF5KF6KF7KF8KF9KF10KF11KF12
100120140160180200220245265285305315
Output expected in Crosstabs.
Crosstab 1:
KF1KF2KF3
100120140
Crosstab 2:
KF4KF5KF6
160180200
       
and so on..
- Prime requirement is to execute the query only once but distribute to multiple crosstabs (with different fields in visible).
- Query execution time is considerable, hence we need to reduce the execution of the same multiple times.
- Query views has been attempted but no performance gain.
Thanks,
Rahul
View Entire Topic
0 Kudos

Hi Ingo,

I used another syntax available for cell usage.

I wrote below code for On Startup event:

TEXT_1.setText(DS_1.getDataAsString(

"009ZVKYB3L9Q2CAH0ZN2B6KG1", { "0FISCVARNT": "Z1"}));

This populated text field with value from table cell & I could re-arrange the single executed datasource.

Sincerely appreciate your guidance. Thanks.

Rahul