Hello,
I have a requirement to show records in a table (Permits), based on a hierarchical Account structure.
The logged in Contact has a lookup to the Account table, which will be used as the filter condition in the list.
The Account table uses the Parent Account field to establish hierarchy.
The Permit table has a lookup to the Account table.
Typically I would do this with the webAPI / fetchXML / javascript, but we have a requirement to do this with as much base functionality as possible. Want to make sure I'm not overlooking an OOB way achieve this - and recommendations are appreciated.
Thanks!
-----------------
Example:
Account Table:
accountname, parentaccount
Corp Store, null
Store 1, Corp Store
Store 2, Corp Store
Other Store, null
Permit Table:
name, associatedaccount
PER1, Corp Store
PER2, Store 1
PER3, Store 2
PER4, Other Store
Contact Table:
name, account
USER1, Corp Store
USER 2, Store 1
If USER1 is signed in the list (Permit Table) should return:
PER1, PER2, PER3
If USER2 is signed in the list should return:
PER2

Report
All responses (
Answers (