How to add "view name" in the JSON of "chrome_tab" workspace UX page property in UI builder?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2022 08:39 PM
How can we add view name to the JSON of "chrome_tab" workspace UX page property in UI builder used for + symbol on workspace?
{
"label": {
"translatable": true,
"message": "New Incident"
},
"routeInfo": {
"route": "record",
"fields": {
"table": "incident",
"sysId": "-1"
},
"multiInstField": "sysId"
}
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2022 08:09 AM
You can pass required parameters as fields and optional parameters in the route, but I don't think the record page by default has a parameter for the view. You may need to stup a view rule or create a different record, but I would first take a look at the record page and see if there's a way to set the view on it through the url.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2025 06:57 PM
Hey! Were you able to get this done? I am looking for the same solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
{
"label": {
"translatable": true,
"message": "New Incident"
},
"routeInfo": {
"route": "record",
"fields": {
"table": "incident",
"sysId": "-1"
},
"params": {
"views": "view_name"
},
"multiInstField": "sysId"
}
}
Depending on page you are using: