I have a REQUIRED single select customfield set for a given screen which is mapped to a given issue in JIRA.(the one i will be creating programmatically). The value to be set for these fields is obtained from another dropdown in a transition screen.
When I try to create the issue programmatically using a jira plugin, it fails probably because a value is REQUIRED for the customfield(despite setting a default value for the field in JIRA) . If I dont make the field REQUIRED, i am able to create the issue and also update its value using
customField.updateValue()
after creating the issue.
But I want to keep the REQUIRED option else I cannot remove the None option from the dropdown.
Ive tried setting the value using the below code before the issue is created.
issueInputParameters.addCustomFieldValue(custFieldId,"value to set"); UpdateValidationResult update = issueService.validateUpdate(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(), issue.getId(), issueInputParameters); if (update.isValid()) { issueService.update(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(), update); System.out.println("Update is valid"); //It prints this }else{ System.out.println("Update is not valid"); } IssueLinkManager issueLinkManager = ComponentAccessor.getIssueLinkManager(); CreateValidationResult createValidationResult = issueService.validateCreate(user, issueInputParameters);
but createValidationResult fails and the issue is not created. Where am I going wrong ? Ive also tried using
issueInputParameters.setSkipScreenCheck(true)
but with no luck. Can anyone please help me to create the issue keeping the REQUIRED field option set.
Hi Komail! This looks like a developer question, so it would be better to post it at community.developer.atlassian.com that's where our developer community hangs out :)
Cheers,
Ana
Hi Ana, I've raised the same question there . I was using this forum earlier and got replies to my other questions regarding jira development, so assumed that its the right one :)
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.