Skip to main content
Solved

Aurena Lobby element not filtering using Page parameter

  • January 26, 2022
  • 4 replies
  • 510 views

Forum|alt.badge.img+8
  • Sidekick (Partner)
  • 34 replies

I have a Lobby page with Customer as one of the page parameters. My Lobby also has an element that jumps to Not Pick Reported Pick List Lines page. I want to jump to that page with filtering of the records using Lobby page’s Customer value.

In the element parameters, I have defined the Web URL according to the IFS documentation guideline:

page/NotReportedDetailedPickListLines/List;$filter=ReceiverID eq $Customer$

Here is the documentation I’m referring to:

https://docs.ifs.com/techdocs/Foundation1/045_administration_aurena/220_Configuration/800_lobby/850_lobby_navigation_guidline/default.htm

But when I click the element, it jumps to the correct page but the Customer value is not passed at all. Instead it is just $Customer$

 

Any tips what I should try next?

IFS Aurena framework version: 10.13.19.0

IFS Aurena client version: 10.13.120.0

IFS OData provider version: 10.13.1.0

Best answer by chwrlk

Hi, 
There are two problems in your navigation URL

page/NotReportedDetailedPickListLines/List;$filter=ReceiverID eq $Customer$

  1. You should separate query parameters using a question mark(?). Then the URL should be changed as follows.
    • page/NotReportedDetailedPickListLines/List?$filter=ReceiverID eq $Customer$
  2. You should use the Name of the page parameter  in the URL, not the Description.
This topic has been closed for replies.

4 replies

Forum|alt.badge.img+13

Hi @Tuukka,

Can you please provide a screenshot of your data source designer.

Best REgards,
Bhagya


Forum|alt.badge.img+8
  • Author
  • Sidekick (Partner)
  • 34 replies
  • January 26, 2022

Hi @Tuukka,

Can you please provide a screenshot of your data source designer.

Best REgards,
Bhagya

 

 

FYI, I also tried using $CUSTOMER$ in the element Web URL, instead of $Customer$, but that didn’t solve the issue.


LakmaliRD
Hero (Employee)
Forum|alt.badge.img+15
  • Hero (Employee)
  • 173 replies
  • February 3, 2022

Hi @chwrlk ,

 

Could you please help here?

 

Thanks!


Forum|alt.badge.img+3
  • Do Gooder (Employee)
  • 10 replies
  • Answer
  • February 3, 2022

Hi, 
There are two problems in your navigation URL

page/NotReportedDetailedPickListLines/List;$filter=ReceiverID eq $Customer$

  1. You should separate query parameters using a question mark(?). Then the URL should be changed as follows.
    • page/NotReportedDetailedPickListLines/List?$filter=ReceiverID eq $Customer$
  2. You should use the Name of the page parameter  in the URL, not the Description.