Data Panel

Select Data Panel in the "Teamworkx Connector" section in the app configuration.

The "Data Panel" page is displayed.

The data panel will show up as soon as you define at least one Data Panel Tab.

To define a tab do the following:

  1. Select an Account
  2. Select the Project
  3. Select the IssueType
  4. Choose a title for your tab (this will be displayed on the Data Panel)
  5. Choose a tab weight (tabs are sorted in ascending order)
  6. Select the query type
    1. Relation - This is used for displaying SAP Items like Workpackages. You can drill down into each Workitem and get the detailed view.
    2. Detail  - This is the detailed view of the configured Object. This information is updating when reloading the site.
  7. Choose the path where the data should be retrieved
    1. The path allows velocity replacements of issue field values. Use ${issue.field("<fieldname or id>")} to access the value
  8. Advanced allows to provide a JSON Object with further configuration options

The data panel in the issue view displays all tabs and information retrieved from the given path.

Advanced Configuration

This allowes to configure which fields should be displayed on the panel.


{
    "detail": {
        "display": [
            {
                "displayTitle": null,
                "name": "S_EVT_HDR-EVTPID"
            },
            {
                "displayTitle": null,
                "name": "S_EVT_HDR-TIMSTP"
            },
            {
                "displayTitle": "Status in SAP",
                "name": "STATUS"
            }
        ]
    },
    "relation": {
        "display": [
            {
                "displayTitle": "Title",
                "name": "relatedobjecttitle"
            },
            {
                "displayTitle": "Description",
                "name": "relatedobjectdescription"
            },
            {
                "displayTitle": "Type",
                "name": "relatedobjecttype"
            },
            {
                "displayTitle": "Role",
                "name": "roletitle"
            }
        ]
    }