cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

We are happy to announce the new Windchill Customization board! Learn more.

How to export/import Access Control Policies?

ptc-5152676
1-Newbie

How to export/import Access Control Policies?

Hi All,

I am wondering to export/import access control policies from all contex (Orgnization,Product,Library,Project)

Is there any option to do this?

2 REPLIES 2

If you want to load ACL only to Products and Libraries you can use the csv Loader like:

#AccessRule,user,domain,typeId,permission,principal,permissionList,state,parentDomainContainerPath

Example: <Windchill Home>\loadFiles\rule.csv

If you want to load Organization ACLs you have to use the XML syntax:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE ProductConfig SYSTEM "standardX10.dtd">

<ProductConfig>

<AccessControlRule>

<domainName>/Default</domainName>

<externalTypeId>WCTYPE|wt.folder.SubFolder</externalTypeId>

<lifecycleState>ALL</lifecycleState>

<WTPrincipalReference isInternal="true">

<groupName>CHANGE ADMINISTRATOR I</groupName>

<groupType>DynamicRole</groupType>

</WTPrincipalReference>

<grantPermissionSet>

<AccessPermissionSet>

<permissionField name="READ"/>

</AccessPermissionSet>

</grantPermissionSet>

</AccessControlRule>

</ProductConfig>


Does anyone have a way to update/modify by java program?

Top Tags