I have created the following SQL statement to find the Lowest Published price from several price books for a group of products.
select distinct
prc.prod_id,
prc.prod_prce
from
table1 prc,
table2 prod
where
(prc.prod_id=prod.prod_id)
and prod.div='X'
and prc.prod_price_eff_date >= {d...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.