Hi Nandappa,
Please try the VatGroup and VatLiable properties of the BusinessPartners object
Regards,
Johan
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
Add a comment