I am creating a Saved Search to get the Inventory ...
# general
e
I am creating a Saved Search to get the Inventory On Hand for a specific location, but all the quantities I get are the sum of all locations despite selecting the Location in the criteria. Any clue?
k
you have to use the location on hand joins for that.
all joins in searches are left outer joins - meaning you get a response for all locations for all location on hand fields - so you need a location on hand criteria to filter your results down appropriately
m
also use "Location Available" vs. "Available"
e
Thanks @KevinJ of Kansas "location on hand joins" what do you mean? Is it a field on the Criteria tab?
s
There is a field call
Location On Hand
, that gives you a location on hand for a location. Everything you see in that location table at the bottom of the item record that is retrievable is liek
Location On Hand
or
Location Available
, etc
If you have many locations, you will see a line for each location, you can restrict this by adding
Inventory Location
to your criteria
e
Thank you all!!!