I need to fill automatically value for certain custom field which kept blank while creating issues automatically through any macro or certain script.
Hello,
You would need a plugin for it.
For example you could use the Power Scripts add-on:
You could create the SIL post function for the create transition with a script like this:
if (isNull(#{empty custom field name})) {
#{empty custom field name } = "value";
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.