cancel
Showing results for 
Search instead for 
Did you mean: 

How to make getDataAsString work for ALL MEMBERS(ALL)

kgaurav2k14
Participant
0 Kudos

Hi Friends,

My Dashboard contains three listbox and based upon the selection of these three listbox, the data is populated in a textbox using getDataAsString function. The logic is working fine when individual values are selected from each listbox but the same logic is not working when ALL is selected from the listbox. I tried by putting a set of codes to pass blak value to the required dimension but it does not work. The code which i added to make it work is highlighted in bold below.

Code on click event of Show button:

var calmon = CALMON.getSelectedValue();

var orguni = ORGUNIT.getSelectedValue();

var compco = COMPCODE.getSelectedValue();

if (calmon == "(ALL_MEMBERS)")

{

  calmon = "";

}

if (orguni == "(ALL_MEMBERS)")

{

  orguni = "";

}

if (compco == "(ALL_MEMBERS)")

{

  compco = "";

}

HC.setText(DS_2.getDataAsString("00O2TLJS35QHRHTQDWRHMPNP8",{"0CALMONTH":calmon,"0ORGUNIT":orguni,"0COMP_CODE":compco}));

Please suggest.

Thanks,

Gaurav

Accepted Solutions (0)

Answers (1)

Answers (1)

kgaurav2k14
Participant
0 Kudos

This message was moderated.