Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
7 replies
Subscribers
9 subscribers
Views
2994 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
Our requirement is to show all the record and report contents to a specific grou
Leela Venkata Vundavalli
A Score Level 2
over 10 years ago
Our requirement is to show all the record and report contents to a specific group of people (say admins), but all the other users outside of this group can see only requests raised by them. Can anybody please let me know the best way to achieve this and best practice?...
OriginalPostID-124659
OriginalPostID-124659
Discussion posts and replies are publicly visible
Parents
0
Leela Venkata Vundavalli
A Score Level 2
over 10 years ago
Hi Angad,
Thank you for the reply.
I have implemented this in another way without creating two separate record types, by creating a default filter on the record as follows:
Record Field: initiator
Operator: includes
Value:
=if(
isusermemberofgroup(
loggedInUser(),
cons!AdminGroup
),
null,
tostring(loggedInUser())
)
I did sanity testing and this method is filtering the data properly based on the user. Is there any problem that might occur with this approach?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Leela Venkata Vundavalli
A Score Level 2
over 10 years ago
Hi Angad,
Thank you for the reply.
I have implemented this in another way without creating two separate record types, by creating a default filter on the record as follows:
Record Field: initiator
Operator: includes
Value:
=if(
isusermemberofgroup(
loggedInUser(),
cons!AdminGroup
),
null,
tostring(loggedInUser())
)
I did sanity testing and this method is filtering the data properly based on the user. Is there any problem that might occur with this approach?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data