- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2023 01:42 PM
Hello All,
I have a scoped application which has inherited 'description' field from the 'task' table but I want to rename it to 'Training Description' instead of 'description' which is default from Task table, but this should be done without affecting other tables such as incident, change which inherit the task table's description field. How can I achieve this using dictionary override feature of servicenow?
Thank you,
Mahesh.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2023 02:24 AM
Hi @maheshkhatal ,
You can achieve your requirement by changing the name in form design it will be applied only to the child table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2023 02:24 AM
Hi @maheshkhatal ,
You can achieve your requirement by changing the name in form design it will be applied only to the child table.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2023 04:40 AM
Hi @maheshkhatal,
You cannot change the label with a dictionary override, but you can add another Label specifically for you extended table:
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2023 05:46 AM
Hi @maheshkhatal ,
Since your requirement is to change the label of a field, I would suggest to use Client Script to do that.
Here is the example:
TestTable inherits Task table
Create a Client Script:
g_form.setLabelOf("description","Training Description");

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2023 11:35 PM
Hi @DYCM,
While this is certainly a possibility, I wouldn't do any client side logic, unless there is no other solution. Since there is another solution here, this should not be used.
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.