Martin Friedel
Mega Sage

Hello, I think you have to allow Cross Scope Privileges where Target Scope is your custom application/table. As you can see in error messages, global application is trying to access your custom table.

 

First, try to check if there are records in Cross Scope Privileges table [sys_scope_privilege] where Target scope is your custom app scope and state is Requested. If such records exist, change state to Allowed.


Or allow read operation from another scopes to your custom table:

  1. Open Tables table [sys_db_object]
  2. Find your custom table, open it
  3. Go to tab 'Application Access'
    • Set Accessible from: All application scopes
    • Can read: checked

table_access.JPG

This approach will allow read access from all other scopes. If you want to have is more strict, handle it by creating Cross Scope Privilege records for read operation from your app scope/table.

 

If my answer helped you, please mark it as correct and helpful, thank you 👍
Martin