- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2015 05:59 AM
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.
Kindly help me out what needs to be done in this case .
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2015 05:01 AM
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.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2015 06:02 AM
What is not working about it? Do you have a workflow that is running for the record?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2015 06:11 AM
it's working now.
i unchecked the client checkbox in UI action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2015 06:00 AM
Hi Shikha,
Item #1) in can be accomplished with a UI policy. I guess you distinguish a password reset incident through the summary which states "Password Reset". If that's always consistent then you can use that as the condition for your UI policy and then manage from the UI policy the visibility of your password reset completed checkbox
Item #2 can be accomplished with the script shared before. This should be an onChange script on the Password Reset Completed field.
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue == '') {
return;
}
if (newValue){
g_form.setValue('state',7);
}
}
Thanks,
Berny