- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-06-2015 02:06 AM
I've created a free-standing U_DOC_REF table so that tasks (PROB, CHANGE, RELEASE) can have one or more URL fields pointing out to sharepoint and other websites.
I'm happy for most roles to READ these records but I want to ACL the WRITE access dependent upon the "parent".
EG - I have WRITE access to a PROBLEM, I inherit WRITE access to its related list of U_DOC_REF
But I only have READ access to CHANGE so I get READ access to its list of U_DOC_REF.
How best to configure this? Script the WRITE ACL so that it checks the parent rights?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-06-2015 02:51 AM
hi Mike,
This should work for you. Write ACL,
answer = current.parent.canWrite();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-06-2015 02:51 AM
hi Mike,
This should work for you. Write ACL,
answer = current.parent.canWrite();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-06-2015 04:04 AM
Aha - as simple as that - thanks!