I have an IAL i have made combining 6 different tables. I am using it to create a counter tile. I can call the IAL in the data source designer fine but when i try to navigate from the tile i made with the IAL to a view I get this error.
I know that the part_product_code is part of the view that I am trying to navigate to. I got the navigation to work with a subquery to the IAL, but I they don’t want us to use subqueries in the lobbies because of the cost of resources when using subqueries.
Example with subquery:
select part_no
from IFSINFO.DEU_SHOP_ORD_SHORT
where part_no in (select part_no from ifsinfo.deu_shop_ord_short where UPPER(BUYER_CODE) like ('%'||UPPER('$BUYER$'))
AND CONTRACT = '#USER_DEFAULT_SITE#'
and part_product_code = 'PUR')
I need it to work like this:
select part_no
from IFSINFO.DEU_SHOP_ORD_SHORT
where UPPER(BUYER_CODE) like ('%'||UPPER('$BUYER$'))
AND CONTRACT = '#USER_DEFAULT_SITE#'
and part_product_code = 'PUR'
Is there any way around this?