To be able to report Jira issues on Insight objects, you need to setup at least one Insight custom field. |
To be able to configure the Insight Custom field, at least one of the two following conditions needs to be met:
If you choose to populate your custom fields during a workflow transition then please note the following :
So if any of the above two mentioned events are missing from your post functions add it for the custom field to be populated correctly. |
To configure the Insight Custom Field
Filter scope is where you scope the filtering of objects to make the selection of objects to fit your specific needs. The scope also defines the objects which are valid for this custom field. An example could be:
objectType = Application |
Read more about IQL here.
Filter Issue Scope: In the create/edit view and in the customer portal, you can filter objects on attribute values additional to the IQL mentioned in previous bullet. This selection does not apply any JQL search. Place holders are supported but only for "Select type" at the moment.
An example could be:
// This will filter the selection on the group selected in the ticket
Server."Owner Group" = ${Group}
// This will just show the reporter objects
Owner = currentReporter() |
Read more about IQL here.
Remember that the above IQL is just examples, you need to change accordingly to your object schema configuration. |
Specify the "Filter Assign Scope" if you automatically want to set objects to the custom field. This can be filtered on any issue field values with support for placeholders
//Assign objects depending on the reporter like
Owner = currentReporter()
//Can be specified like this as well due to support for place holders
Owner = ${reporter}
//Use dot-notation to filter on users like
Server.Owner = currentReporter() |
Read more about IQL here.
Remember that the above IQL is just examples, you need to change accordingly to your object schema configuration. |
You may specify if it should be a single or multiple choice. On multiple custom fields, you can specify if there should be an option to click "Select all" button.
For JSD configuration; You may specify if the object picker should be available on the portal

On this page: |