Hi experts,
I have a gallery with SPList as database. Unfortunately for some reason the gallery is not showing all items properly. When I as an owner open the app, I see all 291 items as shown in my SPList, but my users only see 87. They have the same access rights in the List as I do. Do you know what the problem could be??
Solved! Go to Solution.
@Anonymous
You may need to check the following:
1. Are you using Filter function on the datasource for the gallery? If so, you may need to check if the filter function on the metadata is causing the issue?
2. Do you have item level permisions in the SP list?
Please post your observations here.
Regards
Krishna Rachakonda
If this reply helped you to solve the issue, please mark the post as Accepted Solution. Marking this post as Accepted Solution, will help many other users to use this post to solve same or similar issue without re-posting the issue in the group. Saves a lot of time for everyone. |
@Anonymous
You may need to check the following:
1. Are you using Filter function on the datasource for the gallery? If so, you may need to check if the filter function on the metadata is causing the issue?
2. Do you have item level permisions in the SP list?
Please post your observations here.
Regards
Krishna Rachakonda
If this reply helped you to solve the issue, please mark the post as Accepted Solution. Marking this post as Accepted Solution, will help many other users to use this post to solve same or similar issue without re-posting the issue in the group. Saves a lot of time for everyone. |
@rsaikrishna
hi, this is how I'm filtering the gallery:
Sort(
If(
IsBlank('filter-dpt'.Selected.Name),
Filter(
'Quality evaluator',
IsBlank('First evaluator')
),
Filter(
'Quality evaluator',
'filter-dpt'.Selected.Name in Department.Value,
IsBlank('First evaluator')
)
),
Created,
Descending
)
And the permission level is the same for me and users.
@rsaikrishna hey, after changing the flow and adjusting the items permissions, I'm still getting the errors. Any idea of what else could be causing the problem?