SOffer::SeekByOpenStatCst (Interface: SOffer)
 
Seeks an unpaid Sales Offer by its customer number.
 
VARIANT_BOOL SeekByOpenStatCst (
    enum eSeekMode eSeekMode,
    LONG lCstNum,
    BSTR bsBook,
    LONG lDocNum
)
 
Key information
This method uses key number 7 (See SwapKey).
This is a unique key.
This is a null key, only the records where pIsOpen is true are in the index.
 
Key segment information
Segment NameTypeOrderCollation
pCstNumLONG (unsigned)Ascending-
pBookBSTRAscendingCase insensitive
pDocNumLONG (unsigned)Ascending-
pIsOpenVARIANT_BOOLAscending-
 
Parameters
eSeekMode
[in] A value of the 'eSeekMode' enumeration.
lCstNum
[in] The customer number of the Sales Offer you want to seek.
bsBook
[in] The book code of the Sales Offer you want to seek.
lDocNum
[in] The document number of the Sales Offer you want to seek.
 
Return value
True if the record with the given properties was found, otherwise false.
 
See Also
CreateSOffer
GetDBStatus
GetNext
 
Samples
 
C++
 
// Process all records that are still open
pSOffer->SeekByOpenStatCst (smFirst, 0, "", 0);
while (pSOffer->GetDBStatus () == 0)
{
    // Process record data

    pSOffer->GetNext ();
}

// Check if the document for the Customer with number 25 and with book code = 'Book' and document number = 12 is still open
if (pSOffer->SeekByOpenStatCst (smEqual, 25, "Book", 12))
    // Record is still open

C#
 
// Process all records that are still open
oSOffer.SeekByOpenStatCst (eSeekMode.smFirst, 0, "", 0);
while (oSOffer.GetDBStatus () == 0)
{
    // Process record data

    oSOffer.GetNext ();
}

// Check if the document for the Customer with number 25 and with book code = 'Book' and document number = 12 is still open
if (oSOffer.SeekByOpenStatCst (eSeekMode.smEqual, 25, "Book", 12))
    // Record is still open

VBS
 
' Process all records that are still open
Call oSOffer.SeekByOpenStatCst(smFirst, 0, "", 0)
While oSOffer.GetDBStatus() = 0
    ' Process record data

    Call oSOffer.GetNext()
Wend

' Check if the document for the Customer with number 25 and with book code = 'Book' and document number = 12 is still open
If oSOffer.SeekByOpenStatCst(smEqual, 25, "Book", 12) Then
    ' Record is still open
End If

VB.NET
 
' Process all records that are still open
oSOffer.SeekByOpenStatCst(eSeekMode.smFirst, 0, "", 0)
While oSOffer.GetDBStatus() = 0
    ' Process record data

    oSOffer.GetNext()
End While

' Check if the document for the Customer with number 25 and with book code = 'Book' and document number = 12 is still open
If oSOffer.SeekByOpenStatCst(eSeekMode.smEqual, 25, "Book", 12) Then
    ' Record is still open
End If