- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2017 02:08 PM
I am trying to get the form widget to work, but it keeps showing Record Not Found. When i pull in the Form Widget, I click on the hamburger icon and Open in Platform. In there, I set the URL/HREF to the form that we want:
However, it shows as Record Not Found, what am I doing wrong?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2017 03:19 PM
For the URL option, no you do not enter anything into the HREF/URL field in the Widget Instance, the Form Widget doesn't use this attribute as far as I know
For the "Additional options" option you need to ensure you keep correct formatting of your JSON object, it should look like this
{
"disableUIActions": {
"value": "",
"displayValue": ""
},
"showFormView": {
"value": "true",
"displayValue": "true"
},
"disableUIActions": {
"value": "",
"displayValue": ""
},
"page": "incident",
"sys_id": "-1"
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2017 12:20 AM
Sorry David I had pages on the mind, of course it should be table and not page!
For the URL option, it requires that you don't have the Form Widget embedded in a custom page but link to the baseline form page from your custom page. For example on the /sp Index page add an Icon Link Widget. In the Icon Link Widget Instance
Type: URL
HREF/URL: /sp?id=form&table=incident&sys_id=-1
The Icon Link will now take the user away from the index page to a full page form.
I hope this makes things clearer!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2017 06:15 AM
Ahhh perfect, thanks!!