📚 SAP Business One SDK Help

WeightOfRecycledPlastic Property
See Also  Example

Description

Weight of recycled plastic per kg of item in master data.

Property type

Read-write property

Syntax

Visual Basic
Public Property WeightOfRecycledPlastic() As Double

Remarks

Spain localization.

Example

C#Copy Code
SAPbobsCOM.Items oItm = (SAPbobsCOM.Items)oDIComp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems); 
oItm.ItemCode = ""Item1""; 
oItm1. WeightOfRecycledPlastic = 0.42; 
oItm.PlasticPackageTaxCategory = ""NR""; 
oItm.PlasticPackageExemptionReasonForPurchase = ""a"";  
oItm.PlasticPackageExemptionReasonForProduction = ""b"";  
oItm.Add();

See Also