cancel
Showing results for 
Search instead for 
Did you mean: 

how to commit inventory by using SDK

Former Member
0 Kudos

Hi All,

I am developing a module where i need to commit the inventory, for a specific purpose. so can you help me to do this through SDK.

Alpesh

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

I am developing a manufacturing module and my own work order. I want to commit required inventory for this work order.

So can any one help for it,how i have to code for it.

Former Member
0 Kudos

R u talking abt adding Items using DI?

Vasu Natari.

Former Member
0 Kudos

Yes, i want to do it by using DI.

Former Member
0 Kudos

Hi,

Plz check the code below.

Dim objItem As SAPbobsCOM.Items
objItem = objSBOAPI.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems)
objItem.ItemCode = "A998"
objItem.ItemName = "Test Item"
objItem.ItemType = SAPbobsCOM.ItemTypeEnum.itItems
objItem.IssueMethod = SAPbobsCOM.BoIssueMethod.im_Manual
.
.
.
.
objItem.Add()

Plz use a try catch block, and in place og objSBOAPI use ur application object.

Hope it helps,

Vasu Natari.