Venice
Warehouse::SetFieldVal
 
Sets the value of a field.
 
void SetFieldVal (
    enum eWarehouseFld eFieldID,
    VARIANT vFieldValue
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. wrhfSysNum (C++) or eWarehouseFld.wrhfSysNum (C# / VB.NET).
 
Remark: In VBS, this field identifier enumerations cannot be used! You should use GetFieldID to get a valid field identifier.
vFieldValue
[in] A VARIANT containing the value you want to give the requested field.
 
See Also
CreateWarehouse
GetFieldVal
GetFieldStr
GetFieldID
 
Samples
 
C++
 
// Set the value of the warehouse description to 'Brugge magazijn 1'
pWarehouse->SetFieldVal (wrhfDescription, "Brugge magazijn 1");

C#
 
// Set the value of the warehouse description to 'Brugge magazijn 1'
oWarehouse.SetFieldVal (eWarehouseFld.wrhfDescription, "Brugge magazijn 1");

VBS
 
' Set the value of the warehouse description to 'Brugge magazijn 1'
Call oWarehouse.SetFieldVal(oWarehouse.GetFieldID("Description"), "Brugge magazijn 1")

VB.NET
 
' Set the value of the the warehouse description to 'Brugge magazijn 1'
oWarehouse.SetFieldVal(eWarehouseFld.wrhfDescription, "Brugge magazijn 1")