MicroStrategy ONE

Alter Custom Group statement

Modify a custom group within a project.

Copy
ALTER CUSTOMGROUPcustomgroup_nameIN FOLDERlocation_path[NAMEnew_customgroup_name] 
 [DESCRIPTIONnew_description] [LONGDESCRIPTIONlong_description][FOLDERnew_location_path] [ENABLEHIERARCHICALDISPLAY (TRUE| FALSE)] [ENABLESUBTOTALDISPLAY 
 (TRUE | FALSE)] [ELEMENTHEADERPOSITION (ABOVE | BELOW)] [HIDDEN (TRUE 
 | FALSE)] FOR PROJECTproject_name;

where:

  • customgroup_name is the name of the custom group, of type string, between double quotes (").

  • new_customgroup_name is the new name of the custom group, of type string, between double quotes (").

  • location_path is the folder where the consolidation resides, of type string, between double quotes (").

  • new_description is the new description of the custom group, of type string, between double quotes (").

  • long_description is the new long description of the custom group, of type string, between double quotes (").

  • new_location_path is the new location, of type string, between double quotes (").

  • project_name is the name of the project, of type string, in between double quotes (").

Example

Copy
ALTER CUSTOMGROUP "Copy of Age Groups" 
 IN FOLDER "\Public Objects\Custom Groups" NAME "Modified 
 Age Groups" DESCRIPTION "Modified copy of Age Groups" ENABLESUBTOTALDISPLAY 
 TRUE ENABLEHIERARCHICALDISPLAY TRUE ELEMENTHEADERPOSITION BELOW HIDDEN 
 TRUE FOR PROJECT "MicroStrategy Tutorial";