cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Implement Filter functionality in custom fiori app

Former Member
0 Likes
1,379

Hi Experts,

I am working on a custom Fiori App based on master detail application.I want to add the filter funtionality on the list of materials in the master screen.

I could not find any document with steps to implement the same.Please guide as what all changes are required at O data end and the fiori front end.

Regards

Radhika

View Entire Topic
tejasChouhan
Active Contributor
0 Likes

Hi Radhika,

Lets go step by step.

Implementing Filter criteria in odata.

Based on selection of materials -> Material detail should come.

For this you have to write a filter query in your dpc class. . This blog will show you step by step implementation.

Your URI should be like : /Zprojectname_Srv/EntitySet?$filter=Material eq '1000' (Check 4.5 section for more options : URI Conventions (OData Version 2.0) · OData - the Best Way to REST )

Response :

Material details

The same URI you need to configure in your UI5 code to consume the service.

Regards,

Tejas