cancel
Showing results for 
Search instead for 
Did you mean: 

Fiori Elements - Value Help on Filter

11-26-2019 5:04 AM
suwandi_cahyadi Contributor
3892 views 3 comments Go to solution
SAP Managed Tags
Subscribe

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.

Accepted Solutions (1)

Accepted Solutions (1)

maheshpalavalli
Active Contributor
0 Likes

it works fine in 1.44 as well.

First check if the are exposing the association, you need to expose it as a property in the CDS view and see if your metadata is having the annotations required for the value help. If yes, then in the UI5 app(list report template) make sure you are fetching the annotations.

Thanks,
Mahesh

suwandi_cahyadi
Contributor
0 Likes

Hi, Thank you.

I follow the way from here: https://help.sap.com/viewer/cc0c305d2fab47bd808adcad3ca7ee9d/7.5.9/en-US/8a8415c033d441b2b079a53aff1...

Since I use RDS to expose the OData, seems like I need to re-generate the SEGW service.

Answers (0)