- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2023 12:17 PM - edited ‎01-06-2023 12:17 PM
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);
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).
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2023 04:33 PM
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2023 02:39 PM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2023 04:33 PM
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2023 05:10 AM
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!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2023 05:16 AM
I'm glad it worked out, you're welcome!