- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2019 09:20 AM
Hi everybody,
I am trying to make a report from two or three tables.
So I did a "database view", the thing is that the field I want to map with another is a "Document ID".
I want to make a database view from "incident" table and "sys_email" table to get back the number of the incident and the date of the email notification.
I wrote this "where clause" :
email_target (from sys_email table) CONTAINS inc_number (from incident table)
The notifications are sent to user-group. I want to get back the "created" field and link it with each incident .
Can anybody give me an idea about the way to do it.
Best regards
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2019 05:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2019 11:37 PM
if the object of sys_email table is email & that of incident is inc then the where clause should be something like this
email.instance = inc.sys_id
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2019 02:16 AM
Thank you KP so much ! i works
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2019 03:26 AM
Welcome!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2019 03:49 AM
Please mark the answer if it solved the problem so that the ticket will be closed.