MicroStrategy ONE

Alter Fact statement

Modifies a fact within a project.

Copy
ALTER FACTfact_nameIN FOLDERlocation_path[NAMEnew_fact_name] [DESCRIPTIONnew_desc][LONGDESCRIPTIONlong_description][FOLDERnew_location_path] [HIDDEN (TRUE 
 | FALSE)] FOR PROJECTproject_name;

where:

  • fact_name is the name of the fact to be modified, of type string, between double quotes (").

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

  • new_fact_name is the new name of the fact, of type string, between double quotes (").

  • new_desc is the new description of the fact, of type string, between double quotes (").

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

  • new_location_path is the new folder where the fact is to be moved into, of type string, between double quotes (").

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

This statement can only be executed in a Windows environment.

Example

Copy
ALTER FACT "Revenue" 
 IN FOLDER "\Public Objects" NAME "Copy Revenue" DESCRIPTION 
 "Altered Revenue" HIDDEN TRUE FOLDER "\Project Objects" 
 FOR PROJECT "MicroStrategy Tutorial";