Hi there,
I try to create a CfgFolder via Platform -SDK:
IConfService confService = configurationServerConnector.getConfService();
CfgFolder cfgFolder = new CfgFolder(confService);
cfgFolder.setOwnerID(new CfgOwnerID(confService, tenant.getCfgObject()));
cfgFolder.setProperty("parentID", new CfgParentID(confService, parentObject));
cfgFolder.setType(CfgObjectType.CFGPerson);
cfgFolder.setFolderClass(CfgFolderClass.CFGFCDefault);
I try to create a subfolder as you can see. The same error occures when trying only to create a simple folder with a name and ownderId set.
I got always the following error:
No permissions to create an object under this Folder
The user Im connecting to the configuration-server has the role "Super Administrators". I checked in the configserver. Furthermore the folder Im trying to create the subfolder has also the correct rights.. (full Access to "Super Administrators")
Any ideas ?