📚 SAP Business One SDK Help

TSRExceptionalEventService Object
See Also  Members  Example

Description

The TSRExceptionalEventService service enables you to add, look up, and update Exceptional Events.

Source table: OEEV.

Object Model




Remarks

Financials->Financial Reports->Accounting->Tax->Tax Summary Report

Example

C#Copy Code
"CompanyService oCmpSrv = oCompany.GetCompanyService(); 
TSRExceptionalEventService Service = oCmpSrv.GetBusinessService(ServiceTypes.TSRExceptionalEventService); 
TSRExceptionalEvent add = Service.GetDataInterface(SAPbobsCOM.TSRExceptionalEventServiceDataInterfaces.tsreesTSRExceptionalEvent); 
add.Code = ""13""; 
add.Description = ""test1""; 
Service.Add(add);"

See Also