cancel
Showing results for 
Search instead for 
Did you mean: 

Item warehouse wise stock query in SAP Business One HANA

nikunjmehta2290
Participant
0 Kudos

Dear all,

Need to help on query report which gives item warehouse wise stock quantity. SAP Business one HANA

Regards,

Nikunj

Accepted Solutions (1)

Accepted Solutions (1)

LoHa
Active Contributor
0 Kudos

Hi Nikun

try

SELECT T0.[WhsCode], T0.[ItemCode], T0.[OnHand] FROM OITW T0 WHERE T0.[OnHand] <> 0 ORDER BY T0.[WhsCode] ASC

regards Lothar

Answers (1)

Answers (1)

hdolenec
Contributor
0 Kudos

Hi,

You can get this from OIVL table where all stock movement is stored.

nikunjmehta2290
Participant
0 Kudos

Thank you.