SuppressSharedMembers (Property)

Applies To:

QueryOptions object

Description:

Suppresses the return of members tagged as shared. Shared member instructs Essbase to share the member's data with one or more other members.

Action:

Read-write, Boolean

Example:

This example shows how to enable the SuppressSharedMembers (Property) when a check box is checked.

if (ActiveDocument.Sections["QueryOptions"].Shapes["CheckBox4"].Checked)
	{ ActiveDocument.Sections["Query"].QueryOptions.SuppressSharedMembers = true}
else {ActiveDocument.Sections["Query"].QueryOptions.SuppressSharedMembers= false}