cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Default Bin Item List in Business One

tylerrajotte
Newcomer
0 Kudos
437

I'm currently moving some bins/shelfs around in Business One 9.3 and have run into a problem. We have the physical inventory on the shelf and it can be easily found with a Bin Content Listing Report. However items that are not in stock still have default bins assigned to them for these spots. Is there a way I could look up the items with a default bin of a particular location?

Accepted Solutions (0)

Answers (1)

Answers (1)

impradeepy
Active Participant
0 Kudos

Hi, Tyler Rajotte,

Please use the following query and under the where clause put your warehouse code.

SELECT T0.[BinCode], T1.[DftBinAbs], T1.[ItemCode]

FROM OBIN T0 INNER JOIN OITW T1 ON T0.[AbsEntry] = T1.[DftBinAbs]

WHERE T1.[WhsCode]='001'

Regards,

Pradeep