The CreatorCon Call for Content is officially open! Get started here.

how to delete the field in the table

chunn
Tera Expert

can you help me? how to delete the field in the table?

chunn_0-1697778675946.png

 There is no X symbol in front of this field but Delete in the upper right corner of the dictionary screen

chunn_1-1697778991028.png

 

1 ACCEPTED SOLUTION

Hello @chunn ,

 

Please open background script and use this -

var gr = new GlideRecord('sys_dictionary');
gr.addQuery('sys_id','726fbfac1b0e3550155a1f0b234bcbb0');
gr.query();
if(gr.next()){
    gr.setWorkflow(false);
    gr.deleteRecord();
}

 

Please mark my answer as helpful and solution accepted.
Thanks

View solution in original post

10 REPLIES 10

Harsh_Deep
Giga Sage
Giga Sage

Hello @chunn ,

 

Please open Au record in new tab then click on the context menu and click on delete. It will delete.

 

Please mark my answer as helpful and solution accepted.
Thanks

@Harsh_Deep thanks for your reply to me  but no have delete button  in the record.

chunn_0-1697779670426.png

 

@chunn,

Right Click on Form Header

Right click on the header and then click on the delete.

 

Please mark my answer as helpful and solution accepted.
Thanks