You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.