This filter property is used to load inventory audit records with the specified batch number.
object.Batch
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISInventoryAuditFilter interface |
string
Display the number of the inventory audit records loaded on the basis of the selected filter and some information about them.
Dim aFilter
Dim aInventoryAudits
Dim aInventoryAudit
Dim i
Dim aMessage
Set aFilter = InventoryUtils.CreateInventoryAuditFilter
aFilter.Batch = "12"
set aInventoryAudits = InventoryUtils.LoadInventoryAudits(aFilter)
aMessage = "Inventory Audit Records Count = " & aInventoryAudits.Count
for i = 0 to aInventoryAudits.Count - 1
set aInventoryAudit = aInventoryAudits.Item(i)
aMessage = aMessage & vbNewLine & (i + 1) & ") " &_
"Date: " & aInventoryAudit.Date & vbNewLine &_
"Note: " & aInventoryAudit.Note & vbNewLine &_
"Order Number: " & vbNewLine & aInventoryAudit.OrderNum &_
"Quantity: " & aInventoryAudit.Quantity & vbNewLine
next
Profile.MsgBox(aMessage) In Profile Client v8 on User Interface Batch can be found in .