|  | 
			
				| Gets the field name. | 
			
				|  | 
			
				| 
						
							|  | BSTR GetFieldName ( enum eArtWrhFld eFieldID
 )
 |  | 
			
				|  | 
			
				| 
						| Parameters |  | eFieldID |  | [in] Identifier of the field, e.g. awhfSysNum (C++) or eArtWrhFld.awhfSysNum (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 technical name of the requested field. |  
							|  |  
							| See Also |  
							|  |  | 
			|  | 
			| Samples | 
			|  | 
			
				| 
						
							|  | C++ |  
							|  | // Retrieve the technical name of the 'system number'-field.
 CString strFieldName = (LPCSTR)pArtWrh->GetFieldName (awhfSysNum);
 
 
 |  | 
			
				| 
						
							|  | C# |  
							|  | // Retrieve the technical name of the 'system number'-field.
 string strFieldName = oArtWrh.GetFieldName (eArtWrhFld.awhfSysNum);
 
 
 |  | 
			
				| 
						
							|  | VBS |  
							|  | ' Retrieve the technical name of the 'system number'-field.
 Dim strFieldName
 strFieldName = oArtWrh.GetFieldName(oArtWrh.GetFieldID("SysNum"))
 
 
 |  | 
			
				| 
						
							|  | VB.NET |  
							|  | ' Retrieve the technical name of the 'system number'-field.
 Dim strFieldName As String
 strFieldName = oArtWrh.GetFieldName(eArtWrhFld.awhfSysNum)
 
 
 |  |