|
Seeks an open Purchase Order Detail line by its article number. |
|
|
VARIANT_BOOL SeekByOpenArt ( enum eSeekMode eSeekMode, BSTR bsArtNum, BSTR bsBook, LONG lDocNum, SHORT sLineNum ) |
|
|
Key information | | This method uses key number 6 (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 Name | Type | Order | Collation | pArtNum | BSTR | Ascending | Hierarchy | pBook | BSTR | Ascending | Case insensitive | pDocNum | LONG (unsigned) | Ascending | - | pLineNum | SHORT (unsigned) | Ascending | - | pIsOpen | VARIANT_BOOL | Ascending | - |
| | Parameters | eSeekMode | [in] A value of the 'eSeekMode' enumeration. | bsArtNum | [in] The article number of the Purchase Order Detail line you want to seek. | bsBook | [in] The book code of the Purchase Order of which you want to seek a detail line. | lDocNum | [in] The document number of the Purchase Order of which you want to seek a detail line. | sLineNum | [in] The line number of the Purchase Order 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)! |
|
| Return value |
True if the record with the given properties was found, otherwise false. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Seek the data of all open detail lines for the article with number = 'Art_001' of all purchase orders
CString strArtNum = "Art_001";
pPOrderDet->SeekByOpenArt (smGreaterOrEqual, (LPCSTR)strArtNum, "", 0, 0);
while (pPOrderDet->GetDBStatus () == 0 && (CString)pPOrderDet->pArtNum == strArtNum)
{
// Process record data
pPOrderDet->GetNext ();
}
|
|
|
C# |
|
// Seek the data of all open detail lines for the article with number = 'Art_001' of all purchase orders
string strArtNum = "Art_001";
oPOrderDet.SeekByOpenArt (eSeekMode.smGreaterOrEqual, strArtNum, "", 0, 0);
while (oPOrderDet.GetDBStatus () == 0 && oPOrderDet.pArtNum.ToString () == strArtNum)
{
// Process record data
oPOrderDet.GetNext ();
}
|
|
|
VBS |
|
' Seek the data of all open detail lines for the article with number = 'Art_001' of all purchase orders
Dim strArtNum
strArtNum = "Art_001"
Call oPOrderDet.SeekByOpenArt(smGreaterOrEqual, strArtNum, "", 0, 0)
While oPOrderDet.GetDBStatus() = 0 And oPOrderDet.pArtNum = strArtNum
' Process record data
Call oPOrderDet.GetNext()
Wend
|
|
|
VB.NET |
|
' Seek the data of all open detail lines for the article with number = 'Art_001' of all purchase orders
Dim strArtNum As String
strArtNum = "Art_001"
oPOrderDet.SeekByOpenArt(eSeekMode.smGreaterOrEqual, strArtNum, "", 0, 0)
While oPOrderDet.GetDBStatus() = 0 And oPOrderDet.pArtNum = strArtNum
' Process record data
oPOrderDet.GetNext()
End While
|
|