📚 SAP Business One SDK Help

PlasticPackageExemptionReasonForProduction Property
See Also  Example

Description

Reason for exemption from tax; options are determined by the authorities.

Property type

Read-write property

Syntax

Visual Basic
Public Property PlasticPackageExemptionReasonForProduction() As String

Remarks

Spain localization.

Example

C#Copy Code
item.PlasticPackageExemptionReasonForProduction = ""a""; 
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