cancel
Showing results for 
Search instead for 
Did you mean: 

drop-down list in SAP Analytics Cloud

0 Kudos
1,137

is it possible to extend the standard upper limit of entries for a drop-down list?

the current upper limit = 200 entries

Regards.

Elnur

Accepted Solutions (1)

Accepted Solutions (1)

TuncayKaraca
Active Contributor

Hi Elnur,

I think it's because of DataSource component's getMembers method has a default 200 for returned members of the dimension. If you used:

  • <chartName>.getDataSource().getMembers("DimensionInfo")
  • <tableName>.getDataSource().getMembers("DimensionInfo")

to addItem to the Dropdown component.

So you can use MemberOptions parameter of getMembers method and set limit property greater than 200.

Regards,
Tuncay

Answers (1)

Answers (1)

0 Kudos

Hi Tuncay, thank you very much!! Problem solved.

Regards,

Elnur

TuncayKaraca
Active Contributor
0 Kudos

Good news! You are welcome, Elnur.