UIB | Button Clicked - setValue to field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2023 12:45 PM
Hi,
I'm wondering if is possible when I clicked the button on the workspace and have the Category field in the form set to string "ABC"?
Here is the configuration
The link will navigate to the form

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2023 05:54 AM
Looking at your Glide Form 1, you have sys_id -1. -1 means new record. Instead, you should be using props to set your table and sysID fields. For sure sysID, you can hard code the table if you want.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2024 12:19 PM
The platform view supports prefilling form fields in new records in the URL. Here is an example of a URL for a new Appointment [itil_appointment] record with the Subject [subject] field set to "ABC" on load:
`https://instance.service-now.com/itil_appointment.do?sys_id=-1&sysparm_query=subject%3dABC`
you could use
To get more examples, you can go to a records list view on the platform and set 1 or more filters to <field> IS <value>. After applying the filter, press the `New` button and you'll see that the fields get prefilled and the URL has the parameters it needs to do so.
I question why you are sending the user from a Workspace to the platform view though. It would be a better experience to keep them in the workspace and there are definitely documented ways of doing so.