Quantcast
Channel: SCN : Discussion List - SAP BusinessObjects Design Studio
Viewing all articles
Browse latest Browse all 4041

Tabstrip code

$
0
0

Hi ,

 

I have a requirement where in Tabstrip i have 5 tabs YTD,QTD,MTD,WTD and Daily .I have corresponding charts in the tabs that shows the YTD,QTD,MTD etc values when particular tab is selected.

 

I do have another extra chart outside the tabstrip which shows the top 10 values and this chart should show the top 10 YTD values when YTD is selected in Tabstrip and should show top 10 values for QTD when QTD is selected and vice versa.

 

I have tried the below logic but it didnt work

 

if(RV_TAB_YTD){

RV_CHART_DETAILS_COL.setDataSource(DS_4);

RV_CHART_DETAILS_BAR.setDataSource(DS_4);

RV_CROSSTAB_DETAILS.setDataSource(DS_4);

RV_CHART_DETAILS_COL.setDataSelection({"(MEASURES_DIMENSION)":["45B8932OYF6046EUNCX4VQJZZ","45B8932OYF6046EUNCX4VQDOF"]});

RV_CHART_DETAILS_BAR.setDataSelection({"(MEASURES_DIMENSION)":["45B8932OYF6046EUNCX4VQJZZ","45B8932OYF6046EUNCX4VQDOF"]});

}

 

elseif(RV_TAB_QTD){

RV_CHART_DETAILS_COL.setDataSource(DS_4);

RV_CHART_DETAILS_BAR.setDataSource(DS_4);

RV_CROSSTAB_DETAILS.setDataSource(DS_4);

RV_CHART_DETAILS_COL.setDataSelection({"(MEASURES_DIMENSION)":["45B8932OYF6046EUNCX4VR9A7","45B8932OYF6046EUNCX4VR2YN"]});


 

i have also tried if RV_TABSTRIP == RV_TAB_YTD,but it shows the logic is wrong.


can you please help.


Thanks & Regards,

Babu.


Viewing all articles
Browse latest Browse all 4041

Trending Articles