Hi All,
sending a notification when custom field value changes.
One notification when a custom field is value changed and then get only this action need to get email notification not more of this email.
example: custom field name laptop and values Acer, Dell, Lenovo
when the change to Acer to dell then the dell team will get an email notification. after the ticket is updated assignee or any other issue updated notification is restricted to the dell team.
Hi Maya.
If it is a static type error, does it mean that you haven't actually run it yet? Do you mean that you are getting one of the small red crosses in your code?
If so, that could mean that it isn't broken at all. Could you save the script and run it?
Cheers
DYelamos
Please indicate where both of the scripts are located. It's likely that one of the locations has InvalidInputException already within scope, whereas the location you're trying to use it in now does NOT have it in scope.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The other script is in a post-function on a Resolve transition, whereas this one is in a post-function on a Create. So yes, it could be that there's something already in the other workflow that allows it to work. So how do I bring this one in scope?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Perhaps just trying defining the variable?
def invalidInputException
if(name='aCoolName'){
invalidInputException = new InvalidInputException("Please provide the full legal name")
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.