Hi All,
I am writing a report where I need Latest Unit COST and UNIT PRICE at each LOCATION.
Below is the script I am using but
How do I restrict to get latest data (ReqShipDate ) for each Location.
SELECT ITEMNMBR,
LOCNCODE,
UNITCOST,
UNITPRCE,
ReqShipDate
FROM SOP30300
where ITEMNMBR = '19'
ORDER BY ReqShipDate DESC
*This post is locked for comments