Hi everyone,
I'm having an issue with a grid in my interface. When using System Administrator account, the data loads correctly when the next page button is clicked.
But when using a Basic User account, the grid shows the same first-page data, and the paging control is not updating as well.
I checked all related objects used in the code, all have Viewer access for the Basic User's group.
Code snippet:
a!gridField_23r3(
data: local!grid.data,
pageSize: 5,
pagingSaveInto: fv!pagingInfo,
validations: {}
)
Thanks in advance for any insights!
Discussion posts and replies are publicly visible
Can you check if the Basic User has Viewer permissions on the Data Store (not just the CDT/Entity/Record)? Also, does your query have any security filters or record-level security that might be limiting what Basic Users can see?https://docs.appian.com/suite/help/25.3/Data_Stores.html#securityAlso, Does local!grid use fv!pagingInfo in the query's pagingInfo parameter?