📚 SAP Business One SDK Help

UseInAPDPR Property
See Also  Example

Description

Enables the usage of eTDS in A/P down payment requests.

Property type

Read-write property

Syntax

Visual Basic
Public Property UseInAPDPR() As BoYesNoEnum

Remarks

India localization

Example

C#Copy Code
SAPbobsCOM.WithholdingTaxCodes wtc = (SAPbobsCOM.WithholdingTaxCodes)_company.GetBusinessObject(BoObjectTypes.oWithholdingTaxCodes); 
 
if (wtc.GetByKey(""COIC"")) 

    wtc.UseInAPDPR = BoYesNoEnum.tYES; 
 
    wtc.Update(); 
}

See Also