How can a user add the "Has Breached" column onto the incident table for reporting?Description<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> Issue SummaryHow can a user add the "Has Breached" column onto the incident table for reporting? CauseThis cannot be accomplished via the standard incident table view. However, the user can accomplish this through the use of Database Views. ResolutionAs per the above, this type of robust reporting can be accomplished through the use of Database Views.Here is the documentation for them: https://docs.servicenow.com/csh?topicname=c_DatabaseViews.html&version=latestDatabase views join tables for reporting purposes. For example, the customer can create a database view to join the incident table to the task_sla table. In fact, this joined table already exists in the customer's instance.To navigate to it, do the following:In the left navigator, type in "Database views" and click into System Definition > Database Views. This will bring the customer to all the database views that already exist in their system.Please note that "incident_sla" already exists (this is a joining of the incident table to the task_sla table).To get to that table directly, in the left navigator type "incident_sla.list" and hit enter.From this table view, the customer can add the "Has Breached" column.