Skip to main content

Celonis Product Documentation

Attribute
Overview

Placement

Profile View

Required KM objects

Record.Attribute

KPI

Augmented Attribute

Introduction to Attribute

Use the "Attribute" component on Profile Views to give your users a quick overview of all important attributes and KPIs for a specific object.

When hovering an entry the "copy to clipboard" button is displayed. The list can be displayed in vertical and horizontal order. Furthermore, Display Rules can be applied.

41190289.gif
Basic configuration

Please find below an example of the most basic configuration of an "Attribute" component:

41190616.png

Attribute

Required

Type

Description

field

true

Record

Attribute

KPI

Augmented Attribute

References objects defined in the Knowledge Model.

Important

In many use cases, the record must have an identifier defined to use properly.

id

true

String

Defines a unique identifier for the field. It gets auto-generated if not defined. .

order

true

Integer

Defines the order of the table column. Gets auto-generated if not defined. .

Info

optimised for component editor

View

id: attributeUsage
type: attribute-list
settings:
  data:
    - field: INVOICE_LINE.ACCOUNTING_DOC_NO_LINE
      id: 100 
      order: 100      
    - field: INVOICE.INVOICE_VALUE
      id: 200 
      order: 200
Advanced configuration

In addition to the basic configuration the following additional configuration options are alsoavailable.

Attribute

Required

Type

Possible values

Default Value

Description

position

false

Enum

vertical

horizontal

vertical

Defines the orientation of the list.

Click here to see a screenshot

57541885.png

displayContentRule

false

Custom Attribute

Defines custom formatting of individual attributes. You can change text formatting or apply icons based on different conditions. For more details check out the Display Rule documentation.

Click here to expand...

57541886.png

In order to make the Display Rule fully functional an additional Custom Object is required in the Knowledge Model.

This custom Object contains all the information on how to display the attribute.

Knowledge Model

customObjects:
  - id: CELONIS_STATUS_STYLE
    displayName: Celonis Status rule
    customAttributes:
      - comparator: EQUAL
        value: Done
        style:
          iconName: status-successful
          iconPosition: ONLY_ICON
          iconSize: 24
      - comparator: EQUAL
        value: Snoozed
        style:
          iconName: status-failed
          iconPosition: ONLY_ICON
          iconSize: 24
      - comparator: EQUAL
        value: In Progress
        style:
          iconName: status-running
          iconPosition: ONLY_ICON
          iconSize: 24
      - comparator: EQUAL
        value: Open
        style:
          iconName: status-open
          iconPosition: ONLY_ICON
          iconSize: 24

Info

optimised for component editor

View

id: attributeUsage
type: attribute-list
settings:
position: vertical #horizontal Defines the orientation of the list. Default value: vertical
  data:
    # List of KPI's, Records or Dimensions from the Knowledge Model
    - field: INVOICE.CELONIS_STATUS
      id: 100 
      order: 100
      displayContentRule: CELONIS_STATUS_STYLE #Defines custom formatting of individual attributes.