Solved

Aurena Lobby element not filtering using Page parameter

  • 26 January 2022
  • 4 replies
  • 381 views

Userlevel 3
Badge +8

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

icon

Best answer by chwrlk 3 February 2022, 07:09

View original

This topic has been closed for comments

4 replies

Userlevel 5
Badge +13

Hi @Tuukka,

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

Best REgards,
Bhagya

Userlevel 3
Badge +8

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.

Userlevel 6
Badge +15

Hi @chwrlk ,

 

Could you please help here?

 

Thanks!

Userlevel 2
Badge +3

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.