- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2019 08:12 AM
I am having an odd issue with a reference field and acls on the destination table.
Table B references two fields on Table A. These fields are not visible from Table B form, but work fine when hitting Table B directly.
Debugging Security, I see a True check for base table access, True for access to both fields and a failure check for Base Table/.* fields.
I feel like i'm missing something obvious here.
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2019 12:18 PM
Looked at it again this morning and have it working now.
TableA/Read - Role
TableA.*/Read - Script: answer=false; - Role
tableA.Field1/Read - Role
TableA.Field2/Read - Role

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2019 08:28 AM
Do you have a tablea.<none> and tablea.* read ACL for the custom role?
- TableA.<none>(as in no fields selected) provides the role access to the table
- TableA.* provides access to the fields in the table
- TableA.<field> provides access to the specific field
I'd a similar problem to yourself and someone explained the above to me. This three level of ACL seems to work for whatever I need in terms of providing field access on custom roles or custom tables.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2019 08:31 AM
Thanks for the reply Daniel.
When i add TableA.*, in addition to the specific fields, all fields on the table are accessible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2019 12:18 PM
Looked at it again this morning and have it working now.
TableA/Read - Role
TableA.*/Read - Script: answer=false; - Role
tableA.Field1/Read - Role
TableA.Field2/Read - Role

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2019 05:06 AM
Glad to hear.
I've got my head around ACL's in the last while but used to be probably the most frustrating part of custom apps I'd do