SInvce::SeekByExpStatus (Interface: SInvce)
 
Seeks a Sales Invoice by its export status.
 
VARIANT_BOOL SeekByExpStatus (
    enum eSeekMode eSeekMode,
    BSTR bsBook,
    LONG lDocNum
)
 
Key information
This method uses key number 10 (See SwapKey).
This is a unique key.
This is a null key, only the records where pToExport is true are in the index.
 
Key segment information
Segment NameTypeOrderCollation
pBookBSTRAscendingCase insensitive
pDocNumLONG (unsigned)Ascending-
pToExportVARIANT_BOOLAscending-
 
Parameters
eSeekMode
[in] A value of the 'eSeekMode' enumeration.
bsBook
[in] The book code of the Sales Invoice you want to seek.
lDocNum
[in] The document number of the Sales Invoice you want to seek.
 
Return value
True if the record with the given properties was found, otherwise false.
 
See Also
CreateSInvce
GetDBStatus
GetNext
 
Samples
 
C++
 
// Process all Sales Invoices that still need to be exported
pSInvce->SeekByExpStatus (smFirst, "", 0);
while (pSInvce->GetDBStatus () == 0)
{
    // Process record data
    
    pSInvce->GetNext ();
}

// Check if the Sales Invoice with book code = 'Book' and document number = 12 still needs to be exported
if (pSInvce->SeekByExpStatus (smEqual, "Book", 12))
    // Sales Invoice needs to be exported

C#
 
// Process all Sales Invoices that still need to be exported
oSInvce.SeekByExpStatus (eSeekMode.smFirst, "", 0);
while (oSInvce.GetDBStatus () == 0)
{
    // Process record data

    oSInvce.GetNext ();
}

// Check if the Sales Invoice with book code = 'Book' and document number = 12 still needs to be exported
if (oSInvce.SeekByExpStatus (eSeekMode.smEqual, "Book", 12))
    // Sales Invoice needs to be exported

VBS
 
' Process all Sales Invoices that still need to be exported
Call oSInvce.SeekByExpStatus(smFirst, "", 0)
While oSInvce.GetDBStatus() = 0
    ' Process record data

    Call oSInvce.GetNext()
Wend

' Check if the Sales Invoice with book code = 'Book' and document number = 12 still needs to be exported
If oSInvce.SeekByExpStatus(smEqual, "Book", 12) Then
    ' Sales Invoice needs to be exported
End If

VB.NET
 
' Process all Sales Invoices that still need to be exported
oSInvce.SeekByExpStatus(eSeekMode.smFirst, "", 0)
While oSInvce.GetDBStatus() = 0
    ' Process record data

    oSInvce.GetNext()
End While

' Check if the Sales Invoice with book code = 'Book' and document number = 12 still needs to be exported
If oSInvce.SeekByExpStatus(eSeekMode.smEqual, "Book", 12) Then
    ' Sales Invoice needs to be exported
End If