on 2012 Jun 19 5:09 PM
Dear all
I m working on two reports
1.) List any item that does not have an item cost in any warehouse
2.)List any item that has different costs in different warehouses
any one who can help me out with this reports
thank you
Hi,
Try:
Select T0.ItemCode, T0.WhsCode, T0.Onhand, T0.AvgPrice, T0.CreateDate, T0.UpdateDate from oitw T0 where t0.onhand > 0 and T0.avgprice != (SELECT Avg(avgprice) FROM OITW WHERE ItemCode=T0.ItemCode)
Thanks,
Gordon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi thank you
you are the master
If u look my screen shot i need this http://screencast.com/t/Vss7Bvcr4W
I doesn't want this in my query t0.onhand > 0
and it has to show the the differences
Hi
For 1.) I had found this report Select * from oitw where avgprice = 0 and onhand > 0
is it good??
For2.) Still working
I want these reports periodic basis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
104 | |
10 | |
8 | |
7 | |
4 | |
4 | |
3 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.