
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2016 11:41 AM
Hopefully someone has some insight to this..... in the REST api explorer, I am unable to query the sys_journal_field table, it just doesn't show up in the list. I have verified that the 'Allow access to this table via web services' checkbox is checked on the table. Is there anything else I should be checking? I am an admin on the instance, I have gotten the same results in my community developer instance as well.
Solved! Go to Solution.
- Labels:
-
Integrations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-29-2016 07:38 AM
Hi Jason,
There is a glide property that can be used to allow "sys_" tables to be displayed in the REST API Explorer:
glide.ui.permitted_tables
This is really only a UI issue, so you can still use the sys_journal_field when using other REST clients, even without changing this property.
So, just find this system property, and add any "sys" tables you want displayed.
Marty

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2016 11:57 AM
It was available in Fuji but it's not available in Geneva.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2016 12:18 PM
How do we pull comments and work notes out for a record then?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-29-2016 07:29 AM
bump....anyone have any insight to this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-29-2016 07:34 AM
There are 2 options
1. Scripted REST Web Services
2. Processor which sends back the JSON object
The following code can retrieve the journal entries, which can be send back in Response.
var notes = current.work_notes.getJournalEntry(-1); //gets all journal entries as a string where each entry is delimited by '\n\n'
var worknotesArray = notes.split("\n\n"); //stores each entry into an array of strings
Thanks
Poorna