In EE, I have commonly deployed advanced saved searches to query across two separate LUs. For example…
To search for all Inventory Parts of type “Manufactured” for which Serial Tracking is enabled on the corresponding Master Part record, we would use a SQL advanced search on the Inventory Parts screen, as follows…
TYPE_CODE = 'Manufactured' and Part_No in (select Part_No from &AO.PART_CATALOG where RECEIPT_ISSUE_SERIAL_TRACK_DB = 'TRUE')
Is it possible to perform an equivalent search via the advanced search feature in Aurena?
Copy and pasting the same SQL doesn’t work, as it seems Aurena search seems to require Projection names rather than View names, but after I edited the search term to try accommodate that, Aurena still didn’t accept it. I’m not sure if the issue is with the nested select statement (or maybe it just doesn’t like the “in” operator)?
Any advice would be appreciated!