Hi Kyle,
If you are referring to inventory stock count,
The DI API does allow you to perform this task.
below is VB code to add the stock count :
Dim oStockTake As SAPbobsCOM.StockTaking = oCompany.GetBusinessObject(BoObjectTypes.oStockTakings) Dim sItemCode As String = oDT.GetValue("ItemCode", i) Dim dQuantity As Double = oDT.GetValue("Count", i) oStockTake.ItemCode = sItemCode oStockTake.WarehouseCode = sWhsCode oStockTake.Counted = dQuantity Dim lErr As Integer = oStockTake.Add
I am not sure about the WS though.
Regards
Edy