|
Seeks a Sales Invoice Detail line by its free category. |
|
|
VARIANT_BOOL SeekByFreeCat ( enum eSeekMode eSeekMode, BSTR bsFreeCategory, DATE dDocDate, BSTR bsBook, LONG lDocNum, SHORT sLineNum, BYTE byIndex ) |
|
|
Key information | | This method uses key number 9+index (See SwapKey). | | This is a unique key. |
| | Key segment information | Segment Name | Type | Order | Collation | (pFreeCategory1+index) | BSTR | Ascending | Case insensitive | pDocDate | DATE (date) | Ascending | - | pBook | BSTR | Ascending | Case insensitive | pDocNum | LONG (unsigned) | Ascending | - | pLineNum | SHORT (unsigned) | Ascending | - |
| | Parameters | eSeekMode | [in] A value of the 'eSeekMode' enumeration. | bsFreeCategory | [in] The free category code of the article of the Sales Invoice Detail line you want to seek. | dDocDate | [in] The document date of the Sales Invoice of which you want to seek a detail line. | bsBook | [in] The book code of the Sales Invoice of which you want to seek a detail line. | lDocNum | [in] The document number of the Sales Invoice of which you want to seek a detail line. | sLineNum | [in] The line number of the Sales Invoice Detail line you want to seek. |
|
Remarks
|
|
This number is a 0-based index, i.e. it starts from 0. Therefore the value of this parameter is 1 less than the numbers shown in the Venice grids and 1 less than the value returned by the property vLine (see properties)! |
|
byIndex | [in] The index of the free category you want to seek by. The value of this index must be 0 or 1. | | Return value |
True if the record with the given properties was found, otherwise false. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Seek the data of all detail lines with an article number of which the free category 2 = 'Yellow' of all sales invoices
CString strFreeCat = "Yellow";
pSInvceDet->SeekByFreeCat (smGreaterOrEqual, (LPCSTR)strFreeCat, COleDateTime (0, 0, 0, 0, 0, 0).m_dt, "", 0, 0, 1);
while (pSInvceDet->GetDBStatus () == 0 && (CString)pSInvceDet->pFreeCategory2 == strFreeCat)
{
// Process record data
pSInvceDet->GetNext ();
}
|
|
|
C# |
|
// Seek the data of all detail lines with an article number of which the free category 2 = 'Yellow' of all sales invoices
string strFreeCat = "Yellow";
oSInvceDet.SeekByFreeCat (eSeekMode.smGreaterOrEqual, strFreeCat, new DateTime (), "", 0, 0, 1);
while (oSInvceDet.GetDBStatus () == 0 && oSInvceDet.pFreeCategory2.ToString () == strFreeCat)
{
// Process record data
oSInvceDet.GetNext ();
}
|
|
|
VBS |
|
' Seek the data of all detail lines with an article number of which the free category 2 = 'Yellow' of all sales invoices
Dim strFreeCat
Dim dtDocDate
strFreeCat = "Yellow"
Call oSInvceDet.SeekByFreeCat(smGreaterOrEqual, strFreeCat, dtDocDate, "", 0, 0, 1)
While oSInvceDet.GetDBStatus() = 0 And oSInvceDet.pFreeCategory2 = strFreeCat
' Process record data
Call oSInvceDet.GetNext()
Wend
|
|
|
VB.NET |
|
' Seek the data of all detail lines with an article number of which the free category 2 = 'Yellow' of all sales invoices
Dim strFreeCat As String
Dim dtDocDate As Date
strFreeCat = "Yellow"
oSInvceDet.SeekByFreeCat(eSeekMode.smGreaterOrEqual, strFreeCat, dtDocDate, "", 0, 0, 1)
While oSInvceDet.GetDBStatus() = 0 And oSInvceDet.pFreeCategory2 = strFreeCat
' Process record data
oSInvceDet.GetNext()
End While
|
|