Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Create Issue with Assign Resource

api

How to create issue(IssueEN[]) with 'assign resource'(IssueResourceEN[]). What can I do?
Thank,
June

Punchai
· 1
Punchai
Replies (2)
helpful
0
not helpful

IssueEN issue = new IssueEN();

                issue.ProjectID = 17;
                IssueComponentEN[] comps = new IssueComponentEN[1];
                comps[0] = new IssueComponentEN();
                comps[0].ComponentID = 34;
                issue.Components = comps;
                IssueResourceEN[] res = new IssueResourceEN[1];
                res[0] = new IssueResourceEN();
                res[0].UserID = 1;
                issue.IssueResources = res;

                issue.IssueLongDesc = "Desc";
                issue.IssuePriority = 1;
                issue.IssueResolution = 1;
                issue.IssueSeverity = 1;
                issue.IssueStatus = 1;
                issue.IssueSummary = "issue title";
                issue.IssueType = 1;
                issue.RiskLevel = 1;
                issue.ReportedBy = 1;
                issue = sm.IssuesService.CreateIssue(issue);


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

Thank you very much.


Punchai
· 1
Punchai