Moderator
Has successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification 3 years, 7 months ago
#33234
::
Hi Amin,
It seems like you are executing an oData connector via Data Service, but you do not have the permission to do that in your application. This is because the connection is executed as an anonymous user, meaning that there is no login in the application. So, you do not have the required permissions to access to the data.
To fix this, you have two options:
- Allow anonymous users in your app (you can do that in the application editor, in the tab ‘Other > Security’) and add a role that each anonymous user is assigned automatically. However, since you are on the playground instance, your user might not have the required rights to add roles here.
- Add a login to your application. You can do this using the Login wizard, which quickly creates a login screen with all required logic. Execute the connection to the Data Service after a successful login.
https://community.simplifier.io/doc/current-release/applications/create-apps-via-wizard/login-wizard/
When your user has the required permissions to execute the Data Service, the data will be loaded and shown in the table.