|  | 
			
				| Seeks a Sales Offer by its print status. | 
			
				|  | 
			
				| 
						
							|  | VARIANT_BOOL SeekByPrnStatus ( 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 pToPrint is true are in the index. | 
 |  |  |  | Key segment information |  | | Segment Name | Type | Order | Collation |  | pBook | BSTR | Ascending | Case insensitive |  | pDocNum | LONG (unsigned) | Ascending | - |  | pToPrint | VARIANT_BOOL | Ascending | - | 
 |  |  |  | Parameters |  | eSeekMode |  | [in] A value of the 'eSeekMode' enumeration. |  | 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 |  
							|  |  | 
			|  | 
			| Samples | 
			|  | 
			
				| 
						
							|  | C++ |  
							|  | // Process all records that still need to be printed
 pSOffer->SeekByPrnStatus (smFirst, "", 0);
 while (pSOffer->GetDBStatus () == 0)
 {
 // Process record data
 
 pSOffer->GetNext ();
 }
 
 // Check if the document with book code = 'Book' and document number = 12 still needs to be printed
 if (pSOffer->SeekByPrnStatus (smEqual, "Book", 12))
 // Record needs to be printed
 
 
 |  | 
			
				| 
						
							|  | C# |  
							|  | // Process all records that still need to be printed
 oSOffer.SeekByPrnStatus (eSeekMode.smFirst, "", 0);
 while (oSOffer.GetDBStatus () == 0)
 {
 // Process record data
 
 oSOffer.GetNext ();
 }
 
 // Check if the document with book code = 'Book' and document number = 12 still needs to be printed
 if (oSOffer.SeekByPrnStatus (eSeekMode.smEqual, "Book", 12))
 // Record needs to be printed
 
 
 |  | 
			
				| 
						
							|  | VBS |  
							|  | ' Process all records that still need to be printed
 Call oSOffer.SeekByPrnStatus(smFirst, "", 0)
 While oSOffer.GetDBStatus() = 0
 ' Process record data
 
 Call oSOffer.GetNext()
 Wend
 
 ' Check if the document with book code = 'Book' and document number = 12 still needs to be printed
 If oSOffer.SeekByPrnStatus(smEqual, "Book", 12) Then
 ' Record needs to be printed
 End If
 
 
 |  | 
			
				| 
						
							|  | VB.NET |  
							|  | ' Process all records that still need to be printed
 oSOffer.SeekByPrnStatus(eSeekMode.smFirst, "", 0)
 While oSOffer.GetDBStatus() = 0
 ' Process record data
 
 oSOffer.GetNext()
 End While
 
 ' Check if the document with book code = 'Book' and document number = 12 still needs to be printed
 If oSOffer.SeekByPrnStatus(eSeekMode.smEqual, "Book", 12) Then
 ' Record needs to be printed
 End If
 
 
 |  |