- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2014 12:05 AM
Hi community of ServiceNow,
I just got on-board with developing solutions with ServiceNow and I got a question. I understand that I can get a column information if I right-click on a label and choose Personalize Dictionary. If I choose the Number label from Incident screen and right click to Personalize Dictionary, it shows me the table is linked as Task.
Now, out of curiosity, if I wanted to do an email notification upon creation of a new incident in the system, do I monitor the table as Task or Incident? Also, what are the relationship of these 2 tables? Just wanted to know the right table to monitor going forward.
Thank you for your time.
Regards,
Alex Ng
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2014 12:52 AM
The Incident table is extended from the task table, which basically means that it inherits all of the fields, rules and policies from task. Because there are multiple tables extended from task (Change Request, Problem, Release, etc) that all have a lot of the same core fields, it makes it easy to do reporting across all of the different modules.
As for setting up your notifications, do this on the Incident table. If you do it on task, then not only will users receive emails when an Incident is created, but also any of the other record types related to task (Change Request, Problem, Release, etc). As I say, all record types extended from the task tables will inherit the config from task, which includes email notifications.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2014 01:46 AM
Hi Alex,
Task [task] is one of the core tables provided with the base system. It provides a series of standard fields used on each of the tables that extend it, such as the Incident [incident] and Problem [problem] tables.
for more details read it.