Extends Table AFter Creation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-30-2014 01:53 AM
Can we Extend our custom table after creation ,Let say if I forgot to make it inherit from any table [extends table ],

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2018 08:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-01-2017 11:15 PM
Below script may of help
Run in script background.
var table = '<source_table>'; //table you want to extend
var old_parent = '';
var new_parent = '<table_extension>'; //the table you want to extend to, like cmdb_ci or task
var changer = new GlideTableParentChange(table);
changer.change(old_parent, new_parent);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2017 08:22 AM
Make sure you elevate roles

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2018 08:06 AM
Hi,
I executed above code to create extension from Task table to my custom table(u_wave) but, now system created new table (z_u_wave) which is extended 'task' table.
Old custom table: 'u_wave' is not extended
new auto created table: 'z_u_wave' is extended with task table.
But all my customizations with old table
Hence, i am not able to use old table to create workflow task activity.
Can anyone help me how to resolve this?
Regards,
Vinodha

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2019 10:36 PM
Hi All,
I tried above mentioned code but nothing is happening in Madrid version,
Does anybody have solution for this.
TIA
Dhananjay.
Hi,
I executed above code to create extension from Task table to my custom table(u_wave) but, now system created new table (z_u_wave) which is extended 'task' table.
Old custom table: 'u_wave' is not extended
new auto created table: 'z_u_wave' is extended with task table.
But all my customizations with old table
Hence, i am not able to use old table to create workflow task activity.
Can anyone help me how to resolve this?
Regards,
Vinodha