Deleting Incidents

This issue has been solved. See solution.
JoeBolster's picture

Is there a way for the administrator to delete incidents? Any ideas? Thank you...

mabdelnabi's picture

RE:Deleting Incidents

Solution

Joe,

There's a delete incident option under the Incidents tab. take a look at the attached towards the bottom.

Delete Incidents.gif

JoeBolster's picture

Wow..

Thank you for waking me up...wil this effect anything on the database side?

Joe.Bolster@venetian.com
The Venetian ~ Palazzo Resort Hotel Casino
Las Vegas, NV

BenS's picture

Joe, You could also try this

Joe,

You could also try this SQL if you are worried.

delete from workitem
where number = 'number of incident'

workitem is the table and number is the column so just use an incident number.  For example,

delete from workitem
where number = '10'

That should do the trick.