📚 SAP Business One SDK Help

TaxExemptReasonService Object
See Also  Members  Example

Description

The TaxExemptReasonService service enables you to add, look up and remove Tax Exempt Reason.

Source table: TXRE.

Object Model




Example

C#Copy Code
CompanyService compServ = oCompany.GetCompanyService(); 
 
TaxExemptReasonService ters = compServ.GetBusinessService(ServiceTypes.TaxExemptReasonService); 
 
TaxExemptReasonParams par = ters.GetDataInterface(TaxExemptReasonServiceDataInterfaces.terTaxExemptReasonParams); 
 
par.Code = ""M20"";  
 
TaxExemptReason te_M01 =  ters.Get(par); 
te_M01.Code = ""b""; 
 
ters.Update(te_M01);


See Also