/build/static/layout/Breadcrumb_cap_w.png

Need to maintain Submitter info in Service Desk

When users are termed and accounts removed from AD and service desk we need to be able to maintain the ticket submitter info. Right now if user is removed the ticket goes to an unassigned submitter. We need to maintain info for reporting and auditing purpose. 


0 Comments   [ + ] Show comments

Answers (3)

Posted by: Hobbsy 1 year ago
Red Belt
0

If you archive your tickets then the user data in the ticket is maintained regardless of the status of the user account in KACE.

We tested this for a customer a couple of weeks back, if you delete the user account and the ticket is in a live queue then the ID is lost.

If you archive all tickets logged by the user and then delete the user account the user data stays visible 

Posted by: jjayko 1 year ago
Orange Belt
0

so i got it working with the following 

Select SQL;

select HD_TICKET.ID as ID,

HD_TICKET.TITLE,

(select FULL_NAME from USER where HD_TICKET.SUBMITTER_ID = USER.ID) as SUBMITTER_NAME

from HD_TICKET

JOIN USER U ON (U.ID = HD_TICKET.SUBMITTER_ID)

WHERE HD_TICKET.SUBMITTER_ID <>0 and HD_TICKET.HD_QUEUE_ID = 'X'


UPDATE SQL;

UPDATE HD_TICKET T

JOIN USER U ON (U.ID = T.SUBMITTER_ID)

SET T.CUSTOM_FIELD_VALUE3 = U.FULL_NAME

WHERE T.ID IN (<TICKET_IDS>)


Posted by: JordanNolan 1 year ago
10th Degree Black Belt
0

I am going to make an assumption that you are syncing user and authenticating with Active Directory.  Even if you are, you do not have to remove the users from KACE.  You can disable their account, but you will have to deal with the clutter of old users listed, but that seems to be your desire.

If you want to clean up your KACE user list when you clean up AD so that it is neat and tidy, you can create a ticket rule that runs on Ticket Create so that it copies the submitter info into one of the Custom fields of the ticket and set it so only the admins see it.

 
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