Description
Deletes an existing nature of assessee.
The nature of assessee is specified by its key (AbsId), which is contained in the NatureOfAssesseeParams object passed to the method.
Syntax
Parameters
Remarks
Example
| Deleting a nature of assessee (C#) | Copy Code |
|---|
try { SAPbobsCOM.NatureOfAssesseeParams oNOAParams = (SAPbobsCOM.NatureOfAssesseeParams)oNASrv.GetDataInterface(NatureOfAssesseesServiceDataInterfaces.noasNatureOfAssesseeParams); oNOAParams.AbsEntry = 1; oNASrv.DeleteNatureOfAssessee(oNOAParams); } catch (Exception ex) { Interaction.MsgBox(ex.Message, (Microsoft.VisualBasic.MsgBoxStyle)(0), null); }
|
|
See Also