SimpleFindSearchInfo.StatusFilter Property (PIA)
The StatusFilter property is a read/write Integer that contains the OrderGroup status.
Definition
[Visual Basic .NET]
Imports Microsoft.CommerceServer.Interop.Orders
…
Public Property StatusFilter As Integer
[C#]
using Microsoft.CommerceServer.Interop.Orders;
…
public int StatusFilter {get; set;}
Property Value
An Integer containing the OrderGroup status.
Exceptions
This property may throw one of many mapped exceptions or an exception of type COMException. See Standard COM Errors for additional details.
Remarks
The value of the StatusFilter parameter determines whether a search is being made for a basket, an order, a template, or a combination of these. A bit field is used to determine this. The following table shows the meaning of the individual bits.
Status Type | Value |
---|---|
Basket | 1 |
Template | 2 |
New Order | 4 |
Custom | 8 |
Custom | 16 |
Note
Because the contents of baskets and templates are held in one table, and the contents of OrderGroups with all other status codes (codes 4 and greater) are held elsewhere, only certain values are permissible for searches.
The following values are permissible:
- 1 (basket search)
- 2 (template search)
- 3 (basket or template)
- 4 (new order)
- 12 ( 4 & 8)
- 24 (8 & 16)
The following values are not permissible:
- 5 (basket or new order)
- 6 (template or new order)
- 9 (1 & 8)
Requirements
Namespace: Microsoft.CommerceServer.Interop.Orders
Platforms: Windows 2000, Windows Server 2003
Assembly: Microsoft.CommerceServer.Interop.Orders.Requisition.dll
See Also
OrderGroupManager.SimpleDelete
Copyright © 2005 Microsoft Corporation.
All rights reserved.