logo

NJP

Two ways to review a list of table extensions, or parent using sys_db_object or TableUtils

Import · Jan 08, 2022 · article

As a ServiceNow developer it is very important to know what is a list of table extensions, or parent before you start your configuration and coding to eliminate custom change so you can use ServiceNow out-of-box (OOB) as possible.

I would like to introduce two easy way to find a list of table extensions, or parent below:

Method One using TableUtils()

We are going to use "Script - Background" to get a list of table extensions, or parent:

  1. Review a list of table extensions imageResults: total 15 extended tables is displayedimage
  2. Review a list of table parentsimageimage

Method Two using sys _db_object

  1. Review a list of table extensions, or parents
  2. * Search sys_db_object.list via Filter Navigator image
    • Search "HR Case" on Extends table filed and then a list of table extensions will be displayed
    • imageimage
    • Display HR Case record by clicking "HR Case" under "Extends table" so you can see a parentimage
    • image

If you are good for script, I recommend to use TableUtils() method, but if you are not good for script, you can use sys_db_object.list method. One most advantage of TableUtils method can review a list of all related parent, but sys_db_object.list method can only get a direct parent.image

View original source

https://www.servicenow.com/community/now-platform-articles/two-ways-to-review-a-list-of-table-extensions-or-parent-using/ta-p/2307762