cancel
Showing results for 
Search instead for 
Did you mean: 

Is possible to add Tax Information of Business Partners through DI API

Former Member
0 Kudos

Hi

Is possible to add Tax Information in Accounting tab of Business Partners through DI API.

Regards

Nandappa J

Accepted Solutions (0)

Answers (2)

Answers (2)

ANKIT_CHAUHAN
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Nandappa,

This is a short sample for updating the BP, you can use it accordingly.

SAPbobsCOM.BusinessPartners oBP = (SAPbobsCOM.BusinessPartners)SBO_Company.GetBusinessObject(BoObjectTypes.oBusinessPartners);

oBP.GetByKey("C0001");

oBP.FiscalTaxID.TaxId0 = "1234567890";       /// Used For P.A.N. No.

// Other fields here.

oBP.Update();

Check INV12 table for getting the Fields of Tax Information Form.

Hope it helps.

Thanks & Regards

Ankit Chauhan

Johan_H
Active Contributor
0 Kudos

Hi Nandappa,

Please try the VatGroup and VatLiable properties of the BusinessPartners object

Regards,

Johan