Hi,
I'm creating items programmatically in the SAP.
And, after creating the items, I need to set the OnHand quantity of the items in a specific warehouse to be 1.
Actually our customer wants me to do this without creating any accounting entries.
Is it possible to do that?( I guess logically it is not possible in SAP, and could not find a way to do this.)
If it is not possible, please suggest me a way to create minimum accounting entries and achieve the same.
I'll appreciate your help.
Thanks.
Geetha
(
I'm trying to use the following code segment, which will not work since Ordered is a read only property.
Dim OITW As SAPbobsCOM.ItemWarehouseInfo
OITW = OITM.WhsInfo
If LocateOITW(strWH, OITW) = True Then
'Just add the quantity
OITW.Ordered = 1
End If
)
Edited by: Geetha Sriram on Jun 6, 2008 10:15 PM