In my fiori elements list report app I am using the following annotation to add a filter lbkum !== 0 as a de fault value. It is not working:
<Annotations Target="SAP.EntitySet">
<Annotation Term="UI.SelectionVariant">
<Record>
<PropertyValue...
Hello,
I am trying to create a smart table with type TreeTable. I a very simple service for this, the metadata for which is as follows:
<EntityType Name="ErrorMessage" sap:content-version="1">
<Key>
<PropertyRef Name="NodeID...
Hello,
I have a CDS like the following, which I am using as value help (annotations omitted here)
define view ZZVIEW
as select from ZZTABLE
{
key fieldA
fieldB
}
In the consumption view, I ne...
Hello,
I have a cds view on which I based an oData service, and for two of the exposed filters I created Value helps: as follows:
Field A: value help from another cds viewField B: value help from a third cds view, bust with additional binding to ...
Hello,
I created a service based on a CDS view and used it to create a worklist app with a smart filter bar and smart table. I also used annotations to add value helps. My problem is that for some filters I want the user to be able to filter on val...
Hello,Thanks for the reply.The annotations were added using the guided development generator in BAS to the local annotations.xml file, and the entity, the name of the property and the type are all correct, as checked in the metadata file. There are n...
I have achieved the required behavior by adding a listener on the "initialized" event of the smart filter bar, and removed all validators from that control:onFilterBarInitialized: function(oEvent){
var oFilterControl = oEvent.getSource().getControlB...