Velocity template throws error /null when I want to skip a set of fields

Srividhya February 24, 2013

Hi ,

We have a plugin called "Jira Charting Plugin" , which gives the some custom field types such as ,

1.Date of first Response

2.time in each Status

3.Closing Status

4.Days since last comment

We want to filter out the above fields in the issue pdf(We are extracting each issue in the PDF format) .

So when iterating the custom fields based on the custom field's id in the .vm file, we are thrown an error like the following

org.apache.velocity.runtime.exception.ReferenceException: reference

Also I searched for similar issues and found this :

When I searched for the similar problems , found this below link

https://jira.atlassian.com/browse/JRA-11514

The solution suggested is to

Fixed the excel all fields view to exclude custom field columns that have no view/column-view defined as they cause velocity reference exceptions.

Any idea how to fix this issue?

Thanks

Srividhya

1 answer

0 votes
Midori
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 25, 2013

If you all want to do is filtering out (not showing) those fields in the PDF (generated by the JIRA PDF View Plugin), then what you should do is a simple check like this:

#if($customField.idAsLong != 10010 && $customField.idAsLong != 10011)

## here comes the export code

#end

This sample snippet assumes that the fields not to export has ID = 10010 and 10011.

This way you code will skip them and avoid the ReferenceException.

Suggest an answer

Log in or Sign up to answer