Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
titleVersion 4.7.0 - 5.0.0

Since version 4.7 there is an easier way to export the project and user related metadata value: How to export the filter results


Warning

Since version 5.0.0: The custom fields has been removed. See How-to configure the Customfield for alternatives.


Info
titleVersion >= 5.0.0

jjjjj 

You may want to display or export metadata values in the Jira issue search. Let's say you have the following configuration and want to show the stakeholders:

...

  1. Create a Custom field (e.g. Stakeholder) of the type "JIRA Metadata - View project metadata field" (Further infos: How-to configure the Customfield Sample 1)
    1. use Stakeholder as Default Value
  2. Create a Custom field (e.g. Stakeholder Complex) of the type "JIRA Metadata - Calc. field" (Further infos: How-to configure the Customfield Sample 2)
    1. use the following source code as Default Value

      Code Block
      #set( $value = $metadataService.getMetadataValue($issue.projectObject, 'Stakeholder') )
      #if( $value == "Customer" )
          #set( $someString = "Customer related" )
      #elseif( $value == "Manager" )
          #set( $someString = "Manager level" )
      #else
          #set( $someString ="Others" )
      #end
      $someString



Subsequently, the project's relative metadata value is displayed on the issue.

Image Modified

You can also display the fields as columns in the search and export them.

Image Modified

...