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?