cancel
Showing results for 
Search instead for 
Did you mean: 

How to pass value dynamically ?

Former Member
0 Kudos

Hi All,

I am developing a custom fiori app using standard coding format.

I have a doubt how to pass dynamic values in Odata.

Here's my code:

<List id="Aproval"

items="{path: '/COS_APP_MATSet',

filters : [

{path : 'PfNum',operator : 'EQ',value1:'4045'},

{path : 'Process',operator : 'EQ',value1:'SEP'}

] }">

<items>

<ObjectListItem type="Active">

<firstStatus>

<ObjectStatus text="{Designation}"/>

</firstStatus> <attributes>

<ObjectAttribute text="{Name}" /></attributes>

</ObjectListItem> </items> </List>

Instead of '4045' and 'SEP', I have to pass a variable that changes dynamically.

Accepted Solutions (0)

Answers (2)

Answers (2)

junwu
Active Contributor
0 Kudos

so far seems not possible. you have to do some coding for that

former_member340030
Contributor
0 Kudos

Hi Lalitha

Checkout this , you need to create a binding change event and on the event handler in controller you need to get bindings and apply filter to them

thanks

Viplove