/build/static/layout/Breadcrumb_cap_w.png

Tickets Created Today

The CIO wanted to know what tickets were created today so this query works fine:
SELECT T.ID AS 'Ticket #', T.TITLE AS 'Issue', S.NAME AS 'Status' FROM HD_TICKET T
JOIN HD_STATUS S ON (T.HD_STATUS_ID = S.ID)
JOIN HD_QUEUE Q ON T.HD_QUEUE_ID=Q.ID and Q.NAME ='ASD20 Help Desk'
WHERE DATEDIFF(NOW(), CREATED) < 1
ORDER BY T.ID
This report can be run at any time and will show all the tickets created on the day the report is run.

I'd like to add the Ticket Owner to the report and can see from SQL Workbench the field in the HD_Ticket table is called OWNER_ID which is a number. The number relates to the USER table's ID field and the USER table includes the field FULL_NAME. I'd like to add the column so believe I need to add "U.FULL_NAME as 'Ticket Owner'" to the list of FROM HD_TICKET T". Then I also need to add a JOIN line but this isn't working:
JOIN USER U ON T.OWNER_ID = U.ID

0 Comments   [ + ] Show comments

Answers (7)

Posted by: dchristian 13 years ago
Red Belt
2
Stubox,

When you create a custom view a record is created in HD_TICKET_FILTER.

What i did is create a custom view called "Tickets Created Today".

As a criteria i used create date contains and i entered "2010-11-11" (without the quotes).

I purposely entered yesterdays date. Trust me there's a method to my madness.

When i did that, this was created in the HD_TICKET_FILTER.FIND_FIELDS
a:7:{s:7:"WFIELD5";s:17:"HD_TICKET.CREATED";s:11:"EXP_SELECT5";s:8:"CONTAINS";s:6:"INPUT5";s:10:"2010-11-11";s:13:"UNION_SELECT6";s:1:"0";s:13:"UNION_SELECT7";s:1:"0";s:13:"UNION_SELECT8";s:1:"0";s:11:"FILTER_NAME";s:21:"Tickets Created Today";}

Next I created a help desk run that would run every morning at 12:05 AM.

Here is my select statement:
SELECT 1 FROM DUAL

Here is my update:
UPDATE HD_TICKET_FILTER
SET FIND_FIELDS = REPLACE(FIND_FIELDS,DATE(DATE_SUB(SYSDATE(),INTERVAL 1 DAY)),DATE(SYSDATE()))
WHERE NAME = 'TICKETS CREATED TODAY'


What the update statement does is parse through the FIND_FIELDS column looking for yesterday's date.

When it finds it, it replaces yesterdays date with todays.

After setting up the rule I did a run once.

This updated yesterdays date (which i entered when i created the view) with todays.

Going forward since it runs everyday at 12:05 am i should have a rolling dynamic view.

WARNING:
Since this runs everyday I am unable to test if this is fully working. I wont be sure for another couple of days.

DO NOT IMPLEMENT THIS INTO PRODUCTION WITHOUT TESTING FOR A FEW DAYS!!!!

Also remeber that views are USER specific. Each user that will want this view will need to setup his/her own "Tickets Created Today" View using yesterday's date.

When this is done, the rule will need to be run once to catch all the new created views.
Posted by: airwolf 14 years ago
Red Belt
0
What you've suggested should work. The following worked for me. However, it appears you need to specify the table for CREATED in your WHERE clause - it is ambiguous if more than one table has the same field (USER and HD_TICKET both have a CREATED field).

SELECT T.ID AS 'Ticket #', T.TITLE AS 'Issue', U.FULL_NAME AS 'Owner', S.NAME AS 'Status' FROM HD_TICKET T
JOIN USER U ON (T.OWNER_ID = U.ID)
JOIN HD_STATUS S ON (T.HD_STATUS_ID = S.ID)
JOIN HD_QUEUE Q ON T.HD_QUEUE_ID=Q.ID and Q.NAME ='Queue Name'
WHERE DATEDIFF(NOW(), T.CREATED) < 1
ORDER BY T.ID
Posted by: RichB 14 years ago
Second Degree Brown Belt
0
That works great, thanks!
Posted by: stubox 13 years ago
Blue Belt
0
Is it possible to have a custom view (in the Helpdesk) that lists all tickets created today?

Is there a TODAY or Last Month sort of wildcard?
Posted by: dchristian 13 years ago
Red Belt
0
Hey just wanted to give everyone an update.

This has been working in the test environment for the past week.
Posted by: stubox 13 years ago
Blue Belt
0
Hi dchristian

I thought I had replied to your suggestion but clearly didn't! Sorry for that.

Many thanks for input it should be very useful.

Cheers,

StuBox
Posted by: stubox 13 years ago
Blue Belt
0
Not sure if this would be asking too much but is it possible to create a custom view that displays tickets for the current week? Current week being Monday to Sunday for that week.

Or maybe it would be easier to call it a custom view for the last 7 days (last 7 days including today). So similar to your rule above, the date would be today's date minus 7 days.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ