| |
| Seeks a Sales Invoice by its transfer state and book. |
| |
 |
VARIANT_BOOL SeekByTrnBook ( enum eSeekMode eSeekMode, BSTR bsBook, LONG lDocNum ) |
|
| |
| Key information |  | This method uses key number 5 (See SwapKey). |  | This is a unique key. |  | This is a null key, only the records where pToTransfer is true are in the index. |
| | | | Key segment information | | Segment Name | Type | Order | Collation | | pBook | BSTR | Ascending | Case insensitive | | pDocNum | LONG (unsigned) | Ascending | - | | pToTransfer | VARIANT_BOOL | Ascending | - |
| | | | 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 |
|
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Process all documents that still need to be transferred
pSInvce->SeekByTrnBook (smFirst, "", 0);
while (pSInvce->GetDBStatus () == 0)
{
// Process record data
pSInvce->GetNext ();
}
// Check if the document with book code = 'Book' and document number = 12 still needs to be transferred
if (pSInvce->SeekByTrnBook (smEqual, "Book", 12))
// Record still needs to be transferred
|
|
 |
C# |
| |
// Process all documents that still need to be transferred
oSInvce.SeekByTrnBook (eSeekMode.smFirst, "", 0);
while (oSInvce.GetDBStatus () == 0)
{
// Process record data
oSInvce.GetNext ();
}
// Check if the document with book code = 'Book' and document number = 12 still needs to be transferred
if (oSInvce.SeekByTrnBook (eSeekMode.smEqual, "Book", 12))
// Record still needs to be transferred
|
|
 |
VBS |
| |
' Process all documents that still need to be transferred
Call oSInvce.SeekByTrnBook(smFirst, "", 0)
While oSInvce.GetDBStatus() = 0
' Process record data
Call oSInvce.GetNext()
Wend
' Check if the document with book code = 'Book' and document number = 12 still needs to be transferred
If oSInvce.SeekByTrnBook(smEqual, "Book", 12) Then
' Record still needs to be transferred
End If
|
|
 |
VB.NET |
| |
' Process all documents that still need to be transferred
oSInvce.SeekByTrnBook(eSeekMode.smFirst, "", 0)
While oSInvce.GetDBStatus() = 0
' Process record data
oSInvce.GetNext()
End While
' Check if the document with book code = 'Book' and document number = 12 still needs to be transferred
If oSInvce.SeekByTrnBook(eSeekMode.smEqual, "Book", 12) Then
' Record still needs to be transferred
End If
|
|