Hi,
why you need to display this control in transformation? Could you please describe the real word use case?
To display the role names you will need to create a
custom transformation function for this. The value of control is not stored directly in your document type. Your column will contain 0.
The actual value is stored in the CMS_ACL table (there is ACLID), a reference on node which contains this value is column ACLOwnerNodeID. This is a key to CMS_Tree table.
On the form tab are data selected using query:
SELECT RoleID FROM View_CMS_ACLItem_ItemsAndOperators WHERE (RoleID IS NOT NULL) AND (((Allowed & 1) >= 1) AND (ACLID = 45))In your transformation code you can use our API:
//Int32 is NodeID it is available in the transformation so you can pass this parameter to your custom method
AclProvieder.GetACLItems(Int32)
This way you will have ACLIDs, you may use above query or API to find RoleIDs. Then you can use RoleInfoProvider class to get information about role.
API documentation may be useful for you.
Best regards,
Ivana Tomanickova