- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2018 07:29 AM
Hi All,
We're upgrading to London soon, and we need to change or add columns to the Change Schedule chart. Instead of showing the Configuration Item and Duration, we would like to replace it with the TItle and Assignment Group.
Thank you in advance.
Regards,
Jocelyn
Solved! Go to Solution.
- Labels:
-
Change Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2018 05:38 AM
Hi Sachin,
Thanks for the email, but that's not the column I was referring.
As per ServiceNow, in order to customize the page, you need to customize the following scripts
1. UI page - sys_id=a4fac4c7c3310300b6dcdfdc64d3aef8
2. UI script -Sysy_id=01109679d7e01300532c24837e6103c2
3. UI script -sys_id=6ff41e3ac31303009f93dfdc64d3aebb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2020 11:44 PM
Hi JLeong,
Did the requirement for adding the assignment group to the change scheduler worked?
if yes, could you please help what are all the scripts need to update.
Thanks in Advance.
Ram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2020 03:29 AM
Hi Ram,
We didn't proceed updating the UI page and UI script. We keep them as is.
Sorry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2020 12:48 AM
Did anyone ever solved this issue? we have the same requirement

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2020 01:53 AM
Hello,
As per my requirement, I have been asked to add the assignment group column in the change schedule.
To achieve this I have customised "change_soc" ui script:
added the below mentioned script after line 143 ( $scope.gantt.config.columns = [ )
place it accordingly as per your need:
{ name: SOC.COLUMN.ASSIGNMENT_GROUP,
label: i18n.getMessage("Assignment Group"),
align: "left",
tree: true,
width: 160,
min_width: 160,
resize: true,
template: function (content) {
return "<span>" + content[SOC.COLUMN.ASSIGNMENT_GROUP] + "</span>";
+ "<span data-toggle='tooltip' data-trigger='hover focus click' data-container='body' data-placement='auto bottom' class='select-task icon-target'"
+ "data-original-title='" + msgSelectRecord + "'"
+ "</span>";
}},
+ Modify the "data" UI Script also to fetch the required data
assignment_group:record.assignment_group ? record.assignment_group.display_value : "",
and then add the Assignment group field in the corresponding change schedule definition.
Clear your browser cache and check it again. You should be able to see the assignment group field.
Give a try 🙂
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2020 01:58 PM