Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

Why can't I edit this dictionary entry?

Garry Knight
Kilo Contributor

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

inc1.bmpinc2.bmp

1 ACCEPTED SOLUTION

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


View solution in original post

20 REPLIES 20

Hi Bhavesh,



I have just tried this and as before it defaults straight to u_first_time_fix and I am unable to change it as it changes straight back when I click submit



fix 2.bmp


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

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();


Hi Bhavesh,



Thank you for your help,



I have created the manual entry, still no luck - Record still not found.



Garry



Will it be possible to export xml the label record from your subprod instance and import it into prod?