Created By report
I have reports for Owners and Submitters but am looking to get one created for "Create By". Can't seem to find the field in the DB to report off of.
Answers (4)
Try this SQL to get you going
SELECT HD_TICKET_CHANGE.HD_TICKET_ID, USER.USER_NAME, HD_TICKET.TITLE, HD_TICKET.CREATED
FROM (ORG1.HD_TICKET_CHANGE HD_TICKET_CHANGE
JOIN ORG1.HD_TICKET HD_TICKET
ON (HD_TICKET_CHANGE.HD_TICKET_ID = HD_TICKET.ID))
JOIN ORG1.USER USER ON (HD_TICKET_CHANGE.USER_ID = USER.ID)
WHERE (USER.USER_NAME != 'Admin')AND(HD_TICKET_CHANGE.DESCRIPTION = "Ticket Created
")
You could expand it out by adding in OR statements to remove all your techs and even maybe use also filter the Created ticket field to reduce the reporting period