Thanks for the response keszler. I initially got the error stating that the setFilterIterator should be called before calling nextIssue. So, I included the set_filter_iterator on the filterID. The code looks like this:
15 my $jira=JIRA::Client->new('http://example.com/jira',$user,$pw);
16 $jira->set_filter_iterator($filterID);
17
18 my %custom_fields = $jira->get_custom_fields();
19 my @custom_field_names = keys %custom_fields;
20 # if the above is filled with IDs instead of names, use 'values' in
+stead of 'keys'
21
22
23 while (my $issue = $jira->next_issue()) {
24
25 print 'Priority: ', $issue->getPriority, "\n";
26 print 'Status : ', $issue->getStatus, "\n";
27
28 my @custom_field_values = $jira->get_issue_custom_field_values($i
+ssue, @custom_field_names);
29
30 for (my $i=0; $i < @custom_field_names; $i++) {
31 print "Custom Field $custom_field_names[$i] : $custom_field_val
+ues[$i];
32 }
33 print '-'x40,$/;
34 }
So now I am getting the following 2 errors when running the above code: 1) Reference found where even-sized list expected at test.pl line 18. 2) Can't locate object method "getPriority" via package "RemoteIssue" at test.pl line 25. For error #1, this might have been caused because the hash "customFieldValues" is using a "[]" instead of a "()" to assign the other sub-blessed hashes. Not quite sure on that though. For error #2, not sure why this is being generated since the "RemoteIssue" e.g. status, is part of $VAR1; which should assign a priority of 2 to all the sub-hashes.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|