
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-23-2016 04:47 AM
ctomasi tagging you since one of my fav
Here it is,
Initially, I created a UI page(public) but it was static. Later, we wanted to make it intelligent and decided to keep all our data in tables.
Now, we are able to access the UI page without login. The static content loads absolutely fine but the data needed from the table is blank. I believe this is because of access controls. The question is, whether there is a way to read table data without login.
Thank you very much,
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-23-2016 06:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-23-2016 06:10 AM
Try adding read ACLs on for the table row (table.none) and columns (table.*), add the "public" role. I know it used to work but haven't tried in a while. I'm assuming you already created the "sys_public" record to expose the page if you're getting the static data.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-23-2016 06:16 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-30-2016 04:26 AM
Thanks, Adding a simple function to the Script include makes it accessible in available as public.
isPublic:function(){
return true;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2016 04:34 AM
Sorry I was unable to respond to your original query. I was OOO for a few days and unable to respond. It looks like the other community experts have you taken care of.