|  | 
			
				| Gets the field description. | 
			
				|  | 
			
				| 
						
							|  | BSTR GetFieldDesc ( enum ePOrderFld eFieldID
 )
 |  | 
			
				|  | 
			
				| 
						| Parameters |  | eFieldID |  | [in] Identifier of the field, e.g. porfSysNum (C++) or ePOrderFld.porfSysNum (C# / VB.NET). 
		|  |  |  |  | Remark: In VBS, this field identifier enumerations cannot be used! You should use GetFieldID to get a valid field identifier. |  |  |  |  | Return value |  | A BSTR containing the description of the requested field. |  |  |  | Remarks |  | 
		
	|  | The language in which the description is returned was set during the logon or when automatic logon is used, in the Development Kit configuration of your Venice installation (Main Menu - Venice-button - Settings - Configuration - Development Kit). |  |  
							|  |  
							| See Also |  
							|  |  | 
			|  | 
			| Samples | 
			|  | 
			
				| 
						
							|  | C++ |  
							|  | // Retrieve the description of the 'system number'-field.
 CString strSysNumDescr = (LPCSTR)pPOrder->GetFieldDesc (porfSysNum);
 
 
 |  | 
			
				| 
						
							|  | C# |  
							|  | // Retrieve the description of the 'system number'-field.
 string strSysNumDescr = oPOrder.GetFieldDesc (ePOrderFld.porfSysNum);
 
 
 |  | 
			
				| 
						
							|  | VBS |  
							|  | ' Retrieve the description of the 'system number'-field.
 Dim strSysNumDescr
 strSysNumDescr = oPOrder.GetFieldDesc(oPOrder.GetFieldID("SysNum"))
 
 
 |  | 
			
				| 
						
							|  | VB.NET |  
							|  | ' Retrieve the description of the 'system number'-field.
 Dim strSysNumDescr As String
 strSysNumDescr = oPOrder.GetFieldDesc(ePOrderFld.porfSysNum)
 
 
 |  |