Cannot change the label of a form

faight
Tera Contributor

Has anyone ever run into this issue?

 

  • Scoped App
  • Custom Form
  • Table Name "x_[scoped_app]_tdl"
  • Table Label "label"
  • Column Labels in sys_dictionary blank
  • No Reference to table in sys_documentation
  • Cannot change Label by any means, including scripts
  • Cannot add Column Labels by any means, including scripts

 

Executing following code returns that the Label is "TDL" as it should be

var grSD = new GlideRecord("sys_db_object");
grSD.addEncodedQuery("name=x_[scoped_app]_tdl");
grSD.query();
grSD.next();
gs.info(grSD.label);

faight_0-1673035311288.png

 

 

But the table still shows "label" (And Shows that It's in our Custom App, but the Custom App is the App we are in).

faight_1-1673036113392.png

 

 

 

1 ACCEPTED SOLUTION

-O-
Kilo Patron
Kilo Patron

Is there a record in sys_documentation where field Table contains this table's name and field Element is empty?

Is there a record in sys_storage_table_alias where field Table contains this table's name?

View solution in original post

4 REPLIES 4

bammar
Kilo Sage
Kilo Sage

There seems to be an ' after the first Custom in that message. You probably have to click here to actually make that edit so your in the right scope, then investigate the other CUSTOM' to see what that is all about. 

-O-
Kilo Patron
Kilo Patron

Is there a record in sys_documentation where field Table contains this table's name and field Element is empty?

Is there a record in sys_storage_table_alias where field Table contains this table's name?

faight
Tera Contributor

The sys_storage_table_alias was not there, but when I went to that table it automatically created the missing record and the form started working as expected.

 

Thanks!

I'm glad it worked out, you're welcome!