Please could someone help, I have been searching and trying for weeks to resolve this issue but I have yet to find an answer that works.
I need some way of reporting inventory with a bin locations, that's it in a nutshell, every other warehouse system I have used in the past this has been simple and out of the box but like with everything to do with M$ Nav it has to be extremely difficult and overly complicated.
Currently I am using a SQL statement to join the item journal entry table where Remaining Quantity > 0 to the last warehouse entry record which matches the Item No, Lot No, Serial No, Location, but now i have realised that due to warehousing being turned on items without serials are being incorrectly reported as being in the GOODS OUT bin location.
Is there a way of reporting correctly the bin locations of items in the Item Ledger Entry table?
Any feedback would greatly be appreciated.
Thanks
Steve
0
Comments
I'm afraid it's bad news. The warehouse entries are practically independent of the item ledger entries, meaning you have no link you can rely on. The only table that has a field to look up where things really are is bin content. To calculate the quantity at date by item, location and bin, you could do with the warehouse entries alone, like this:
There's a catch, however. This only works for locations where you have warehouse functionality enabled... so for the general case you need to do a check first (in location) and build the list by location, either over item ledger entries or warehouse entries, depending on the settings in location.
with best regards
Jens
[edit: typos, afterthoughts etc.]
under certain circumstances, yes. You would get the same result by going over the warehouse entries only, and join to your tracking codes (if that's a filter). You could also use the tracking code for the grouping (that's what I would prefer). This would still require that all locations have warehousing activated. Otherwise these locations would be missing in both queries.
with best regards
Jens