Skip to Content
0
Aug 21, 2023 at 10:54 AM

How to enable multiselect in F4 value help in Fiori element annotation.

57 Views

Hi everyone,

I am working on firoi element annotation, I have requirement for enabling multiselect in F4 value help.

I have tried below scenario but that is now working.

annotate service.BookSet with @(Capabilities.FilterRestrictions: {FilterExpressionRestrictions: [{

Property : Id,

AllowedExpressions: 'MultiValue'

}]});

annotate service.BookSet with {

Id

@Common: {

Label : 'ID',

ValueList: {

Label : 'ID',

CollectionPath: 'DistinctBooks',

Parameters : [{

$Type : 'Common.ValueListParameterInOut',

ValueListProperty: 'Id',

LocalDataProperty: Id

}]

}

};

};

Could you kindly help me with this, please?