Hi
I write a code and want add “collection of issues from jql “ to a “Issue Picker Field”, search return
SearchedIssue = DocumentIssueImpl[issueKey=TEST-xxx]
and can not add this to Issue Picker Field
How to fix it?
Part of my code:
ArrayList<Issue> fixVersionIssueList = new ArrayList<Issue>();
fixVersionIssueList.add( SearchedIssue as Issue ); issue.setCustomFieldValue(VersionIssueCollection,fixVersionIssueList);
VersionIssueCollection is my issue picker field.
and log:
fixVersionIssueList= [DocumentIssueImpl[issueKey=TEST-xxx],DocumentIssueImpl[issueKey=TEST-zzz]]
How conver DocumentIssueImpl to Issue ?
thanks
It resolved.
solution:
Convert DocumentIssueImpl to Issue by:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.