Question

Lobby Query re navigation

  • 6 February 2021
  • 2 replies
  • 182 views

Userlevel 7
Badge +18

We have a package that creates summary data into a custom logical unit.   This custom logical unit is used utilized by the lobby list element and the aim is to navigate from this list element to a customer order lines saved search.  

The saved search used the following filter:

trunc(promised_delivery_date) < trunc(sysdate) and state <> 'Cancelled'  
and order_state <> 'Partially Delivered'
and customer_no <> 'CA001' and order_no not like 'Y%'
and &AO.accounting_period_api.get_accounting_year(&AO.site_api.get_company(contract),promised_delivery_date) = &AO.accounting_period_api.get_accounting_year(&AO.site_api.get_company(contract),site) 

 

The list element navigation is passing the following column values:

 

It looks like the column values above are being ignored as order lines with that are in an earlier period are being displayed.

 

Is there a better way to achieve this.

Thank you.


This topic has been closed for comments

2 replies

Userlevel 2
Badge +4

It might not be the solution.  But, try to trace first: 

Have you tried activating the debug console, and check the query statement when the navigated window is populated?  (check whether those 2 fields are in the where condition).

Userlevel 7
Badge +18

@anqjusinl 

Thank you for your reply.

I had already created the custom fields for both prior to creating the lobby element.