- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2023 08:00 AM
Hi All,
This is on relationship editor page, need to add few more columns in the relationship section. However unable to find, from where it is being controlled. Anyone could please suggest if possible to do and from where...
Thanks in advance for the help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2023 04:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2023 12:48 PM
Hi @skumar_srbh ,
Hope you are doing great.
follow these steps to identify the source of control for the relationship section and explore the possibility of adding additional columns:
Navigate to the relationship editor page: Please provide the name or URL of the specific relationship editor page you are referring to.
Inspect the relationship section: Open the developer tools in your browser (typically done by right-clicking on the page and selecting "Inspect" or "Inspect Element"). This will allow us to inspect the underlying HTML and JavaScript code for the relationship section.
locate the HTML elements that make up the relationship section. Look for attributes such as table name, form name, or related UI components that are associated with the section.
Check if the relationship section is populated through a related list on the form. If so, we need to identify the related list and its associated list control.
Locate the associated list control: In the ServiceNow application, search for the table name identified in step 3. Find the associated list control for the related list and open it for configuration.
Modify the associated list control: Once you have located the associated list control, you can add or remove columns based on your requirements. Look for options such as "Columns" or "Display Columns" in the configuration settings. Add the desired columns to the list of displayed columns and save the changes.
Below is script example to be used for addition of column:
// Locate the associated list control
var associatedList = new GlideListControl('<list_control_sys_id>');
// Add the desired column to the list of displayed columns
associatedList.addColumn("additional_field");
Regards,
Riya Verma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2023 05:27 AM
I tried to search but couldn't find. Looks like since gear icon itself is not there, we can't personalize(guessing).

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2023 12:25 AM
Hi @skumar_srbh ,
You might have noticed the $ in the URL ($relationshipEditor.do). Most of the pages (to not say all) starting with a $ symbol are not customizable.
Best regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2023 04:30 AM