MicroStrategy ONE

Create Folder statement

Creates a folder in the path specified for a given project.

Copy
CREATE 
 FOLDERfolder_nameINlocation_path[DESCRIPTIONdescription][LONGDESCRIPTIONlong_description][HIDDEN (TRUE 
 | FALSE)] FOR PROJECTproject_name;

where:

  • folder_name is the name of the folder to be created, of type string, between double quotes (" ").

  • location_path is the folder path where the new folder is to be placed, of type string, between double quotes (" ").

  • description is the description of the folder, of type string, between double quotes (" ").

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

  • project_name is the name of the project that will contain the new folder, of type string, between double quotes (" ").

Example

Copy
CREATE FOLDER "New Reports" IN "\Public 
 Objects" DESCRIPTION "New Sales Reports" HIDDEN FALSE FOR 
 PROJECT "MicroStrategy Tutorial";