cancel
Showing results for 
Search instead for 
Did you mean: 

DS 1.5: Crosstab with Selection Type "Data Cell"

Former Member
0 Kudos

Hi,

Design Studio 1.5 comes with new Crosstab "Selection Type" Option "Data Cell".

According to Application Designer Documentation (http://help.sap.com/businessobject/product_guides/AAD15/en/ds_15_user_en.pdf) selected cell can be accessed via API method "getSelection". Returning Parameter is of type ResultSetSelectionByString.

Question: how can this return parameter be processed? I could not find any information on that.

I need to determine selected cell (row + column) of Crosstab.

Thank you,

Andreas

View Entire Topic
0 Kudos

The most practical piece of code is the following;

var a=me.getSelection();

a.forEach(function(value, key) {

    DS_2.setFilter(key, value);

});

This is where 'me' is the source crosstab and DS_2 is the target crosstab. The source and target crosstab must be from the same data source because original UID's are being exchanged.