In this page

What is Assets?

(supported since Better Excel Exporter for Jira Cloud 0.7.0)

Assets is the leading asset management app for Jira, that allows implementing CMDB, CRM, HR, ITSM or ITIL functionality on the Jira platform.

Assets integration features

  • You can export the Assets-managed custom field type Assets objects to Excel.
  • You can configure the export format to include object names (e.g. "My awesome server"), object keys (e.g. "My awesome server [SRVR-123]"), object attributes (e.g. "My awesome server [SRVR-123] (Manufacturer=Cray Research, Vector Processors=4, Type=Supercomputer)") and any combination of these.

(Need more features? Tell us in a support ticket!)

Assets integration vs. the Assets built-in Excel exports

You may want to ask: if Assets has a built-in Excel export feature, why would you use another app for the same?

While the Assets built-in Excel exports may be sufficient for basic use cases, the Better Excel Exporter integration is more powerful in, at least, these:

If at least one of these is important for you, give the app a try.

Tutorial video

Watch this short introductory video to see how fast you can export your Assets data to Excel! (Although the video below was captured in the app's Server version, the Cloud version is very similar.)

Assets Excel export samples

Jira issues with Assets objects

This straightforward Excel export (created using the default issue-navigator.xlsx template) contains two Assets custom fields: one of them is a single-select, while the other one is a multi-select type. Both use the "object name [object key]" format which is customizable.

jira-assets-export.xlsx

Jira issues with Assets objects and attributes

This Excel example is configured to export the complete attribute set for each Assets object. The attributes are exported to an Excel spreadsheet as comma-separated name-value pairs in brackets (the format is completely customizable).

jira-assets-export-objects-with-attributes.xlsx

Jira issues per Assets objects pivot chart

You can also create custom Excel reports from Assets data, just like from built-in custom field values. The insight-report.xlsx template calculates issue count per object, project distribution per object and status distribution per object. Looking for more? Create your own Assets Excel report from Jira using this template as a starting point.

jira-assets-report.xlsx

Configuration

Configuring the Assets custom fields

There is nothing to do. Better Excel Exporter will automatically recognize the Assets-managed objects and export them accordingly.

Configuring the export format for the Assets custom fields

The default behavior is that object names and object keys will be exported (e.g. "My awesome server [SRVR-123]"). You can include object name, object key and attributes by setting these configuration variables in the top part of the field-helper-tool.groovy script:

// field-helper-tool.groovy

/* Assets configuration. */
def exportAssetsObjectNames = true
def exportAssetsObjectKeys = true
def exportAssetsObjectAttributes = false

If you want full control over the export format, please see this easy-to-read method in field-helper-tool.groovy:

private def assetsObjectsToString(def object)

Learn more about Assets