MicroStrategy ONE

Remove Folder ACE statement

Removes an ACE (Access Control Entry) from a folder's ACL (Access Control List).

Copy
REMOVE 
 ACE FROM FOLDER "folder_name" IN 
 FOLDER "location_path" (USER "user_name" | GROUP "group_name") FROM 
 PROJECT "project_name";

where:

  • FOLDER "folder_name" is the name of the folder from which an ACE is to be removed, of type string.

  • FOLDER "location_path" is the folder path where the folder is located, of type string.

  • USER "user_name" is the login name of the user to be assigned to the new ACE, of type string.

  • GROUP "group_name" is the login name of the group to be assigned to the new ACE, of type string.

  • PROJECT "project_name" is the name of the project where the folder is located, of type string.

Example

Copy
REMOVE ACE FROM FOLDER "Subtotals" IN FOLDER 
 "\Project Objects" USER "Developer" FROM PROJECT "MicroStrategy 
 Tutorial";