cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Is there a option for user to select from dropdown to allow "ALL",single selection&multi selections.

former_member566000
Participant
0 Likes
319

Hi,

I am currently working on BPC 11 standard and was looking for how to give option for user to select from drop down to allow "ALL" ,single selection, and multi selections.

Thanks!

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186338
Active Contributor
0 Likes

Sorry, but I don't understand how do you want to select multiple members in drop down???

Without any relation to BPC, drop down style control is not used for multiple selection - single item is shown after selection. Theoretically it's possible to write in VBA some custom combobox with multiselect, but it's not a trivial task.

Instead of combobox you can use listbox, that allows multiple selection. Then, using VBA you can get selection result and pass it to EPMDimensionOverride for dimension in page axis (supported from some EPM SP).

P.S. "ALL" can also be an issue - multimember for page axis is limited to 30 members only. Some root parent member has to be used instead of the list of all members.

former_member186338
Active Contributor
0 Likes

P.S. You can look on the sample of multiselect list box at the end of my blog:

https://blogs.sap.com/2017/09/21/bpc-nw-10-vba-function-to-get-dimension-members-list-by-property-va...