- 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 05:47 AM
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2015 05:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2015 06:01 AM
Hi Shikha, if you're taking this route, make sure you uncheck the client checkbox of your UI action.
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2015 06:11 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2015 06:20 AM
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