Show TOC

Multi-Line TextLocate this document in the navigation structure

Get information about what UI annotations to use to display fields as multi-line text on SAP Fiori UIs.

You can use the following annotation to mark a field to be displayed by a control that supports multi-line input, for example a text area:
  • @UI.multiLineText
    Sample Code
    ...
    define view Product as select from ... {
      @UI.identification: [ { position: 10 } ]
      key ProductID,
      
      @UI.identification: [ { position: 20 } ]
      ProductName,
      
      @UI.identification: [ { position: 30 } ]
      @UI.multiLineText: true
      Description,
      
      ...
    }