- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2014 01:56 AM
Hi All,
A while ago our 'First Time Fix' Column label was deleted from our incident table. I have since returned it however it is now displayed as u_first_time_fix on the form and I am unable to edit it. If I try to edit the dictionary entry it defaults back every time i save the new entry. Is there a way I can change this name without losing the current data on it as we have 4 months worth of stats on that button. (clicked when Service Desk fixes fault).
Thanks for all the help
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2014 03:05 AM
Try this too
1. Navigate to System Update Sets > Local Update Sets
2. In 'Customer Update List' I sorded by date
3. Looking under the Type column check for the 'Field Label' record and opened it
4. Under 'Related Links' ->selected 'Show Related Record'
5. Now try to changed the label
6. Click 'Update'
~Pradeep Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2014 02:41 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2014 02:45 AM
The entry that you just created manually...create it via script...also use below 2 lines in your code so the OOB business rule does not stop you to create.
- dic.setWorkflow(false); // Do not run business rules
- dic.autoSysFields(false); // DO not update system fields

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2014 02:48 AM
var gr = new GlideRecord('sys_documentation');
gr.initialize();
gr.setWorkflow(false);
gr.autoSysFields(false);
gr.name = 'incident';
gr.label = 'First Time Fix';
gr.element = 'u_first_time_fix';
gr.insert();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2014 02:58 AM
Hi Bhavesh,
Thank you for your help,
I have created the manual entry, still no luck - Record still not found.
Garry

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2014 03:02 AM
Will it be possible to export xml the label record from your subprod instance and import it into prod?