Hi @linda_zghendy ,
Going by the documentation https://docs.atlassian.com/DAC/javadoc/jira/reference/com/atlassian/jira/issue/IssueFactory.html that seems like it should to be an easy thing.
If you can post some more of your script we might be able to see if something else has changed.
Also as a reference you can always look thru https://library.adaptavist.com for example scripts.
I personally tend to use the IssueManager interface more which allows me to validate the input first before actually running the create.
Hi Dirk, thanks for your answer
here copy from script :
IssueFactory issueFactory = ComponentAccessor.getComponentOfType(IssueFactory.class)
[..]
MutableIssue newIssue = issueFactory.getIssue()
[…]
DefaultIssueChangeHolder issueChangeHolder = new DefaultIssueChangeHolder()
def groupManager2 = ComponentAccessor.getGroupManager()
def group2 = groupManager2.getGroup(groupValue.toString())
CustomField groupeField = ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_10123")
List<Group> groupList = new ArrayList<Group>()
groupList.add(group2)
if (groupeField.getValue(newIssue).equals(null)) {
log.warn "Creation value groupe Etude"
groupeField.createValue(newIssue, groupList)
}else{
[…]
}
here copy from log error :
[...]
2021-10-21 17:27:51,308 WARN [runner.ScriptBindingsManager]: Creation value groupe Etude
2021-10-21 17:27:51,436 ERROR [workflow.AbstractScriptWorkflowFunction]: Workflow script has failed on issue ASK-10516 for user 'S081846'. View here: http://fr-pe-jira-w1:8[...]
com.google.common.util.concurrent.UncheckedExecutionException: java.lang.NullPointerException: null value in entry: issue=null
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2050)
[...]
at Script63.run(Script63.groovy:111)
Caused by: java.lang.NullPointerException: null value in entry: issue=null
at com.google.common.collect.CollectPreconditions.checkEntryNotNull(CollectPreconditions.java:32)
at com.google.common.collect.SingletonImmutableBiMap.<init>(SingletonImmutableBiMap.java:42)
at com.google.common.collect.ImmutableBiMap.of(ImmutableBiMap.java:72)
at com.google.common.collect.ImmutableMap.of(ImmutableMap.java:124)
at com.atlassian.jira.issue.customfields.persistence.EagerLoadingOfBizCustomFieldPersister.lambda$getValuesForIssueId$1(EagerLoadingOfBizCustomFieldPersister.java:115)
at com.google.common.cache.LocalCache$LocalManualCache$1.load(LocalCache.java:4876)
[...]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.