- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2022 03:29 PM
Hello,
In our dictionary entries for Impact/Urgency, we have default values. I have an inbound email action where I would like to be able to set the Impact/Urgency to blank or null. Does anyone know how I can do this?
I have tried the following in my inbound email action.
//current.impact = 3; //does work, not what i need
//current.urgency = 3; //does work, not what i need
//current.impact = ""; //doesnt work
//current.urgency = ""; //doesnt work
//current.impact = null; //doesnt work
//current.urgency = null; //doesnt work
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2022 02:47 PM
I ended up just creating a onLoad Client Script that uses g_form.clearValue to wipe the values that I needed, instead of trying to make the change occur in the inbound action.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2022 10:05 PM - edited 10-13-2022 10:08 PM
Hi Jared Wason,
creates a BR before update that is executed when the state changes from resolved to open
current.fieldName = ' ';
If it not work then go through below link also,
Please mark this as "Correct Answer" if I have given you a sufficient answer to your question.
Thanks,
Omkar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2022 02:47 PM
I ended up just creating a onLoad Client Script that uses g_form.clearValue to wipe the values that I needed, instead of trying to make the change occur in the inbound action.