GetNumItems
Gets the number of records to process for consolidation. This function can be used in Consolidation rules.
Syntax
NumItems = DataUnit.GetNumItemsReturn Value
The number of records in the data unit.
Example
Set dataUnit = HS.OpenDataUnit("")lNumItems = dataUnit.GetNumItemsfor lItem = 0 to lNumItems - 1' Get the next item from the Data UnitCall dataUnit.GetItem(lItem, strAccount, strICP, strCustom1, strCustom2, strCustom3, strCustom4, dData)