Skip to Content
1
Nov 26, 2019 at 04:04 AM

Fiori Elements - Value Help on Filter

2121 Views

Hi,

I am on SAP UI5 version 1.44.15.

How to get a search help/value help similar to ABAP in Fiori Elements application?

I've tried adding association in the CDS to the master table and added the @Consumption.valueHelp: '_t001':

....
@EndUserText.label: 'xxx'
@OData.publish: true
define view xxxxx
  as select from ekko as pohdr
  association [0..1] to t001 as _t001 on $projection.bukrs = _t001.bukrs
{
      @UI: {
        selectionField.position: 10,
        lineItem.position: 10
      }
      @EndUserText.label: 'Company Code'
      @Consumption.valueHelp: '_t001'
  key bukrs,
.....

But when I press F4 in the Fiori Elements application, it still show the general value help dialog box.

Thank you.