How can I create a BAQ that shows the POS that were not created with requisitions?
Something like this?
select
[PORel].[PONum] as [PORel_PONum]
from Erp.PORel as PORel
where (PORel.ReqNum = 0)
group by [PORel].[PONum]
1 Like