How to close incident through E-mail ?

geet
Tera Guru

I Want that when my team gets an incident of Reset password in their queue, after they reset the password they should open a new mail in outlook and there should be specific keywords in that mail from which we can resolve the incident.E-mail.JPGinci.JPG

Kindly help me out what needs to be done in this case .

1 ACCEPTED SOLUTION

If you are looking for a quick resolve method then just create a UI Action called something like "Resolve Password Reset" for the list and just right click and select that.   Simple quick and easy.   You could even have the code just apply a template so you could just update the template and not have to update the code of the UI Action just in case things need to change.


View solution in original post

22 REPLIES 22

Is there a reason you do not want to implement something like I was suggesting?   Or simply put a button (UI Action) on the form that executes the needed script to resolve and bypass the needed stages?


Hi Drew,



I have applied a UI action but it is not working.



ui action3.PNG


Hi Shikha, if you're taking this route, make sure you uncheck the client checkbox of your UI action.



Thanks,


Berny


Yes Berny, It's working now. Thanks alot.. you always help me.



Kindly guide me that why it didn't work when i check the CLIENT checkbox.


Hi Shikha, great to hear .



A UI action is either a client side UI action or a server side UI action and that's determined by that client checkbox. If your UI action is a client one the you must use client side scripting such a g_form.getValue('field_name'); versus if your UI action is of server side then you can use current.field_name, which is only accessible for server side scripting.



Thanks,


Berny