Description
Syntax
Parameters
Remarks
Example
| Deleting a sales opportunity interest (C#) | Copy Code |
|---|
SalesOpportunityInterestSetupParams interestParams = interestService.GetDataInterface( SalesOpportunityInterestsSetupServiceDataInterfaces.soissSalesOpportunityInterestSetupParams) as SalesOpportunityInterestSetupParams; // Make sure that a record with SequenceNumber = 1 exists interestParams.SequenceNo = 1; Console.WriteLine("Get a SalesOpportunityInterestSetup object with key=" + interestParams.SequenceNo.ToString()); SalesOpportunityInterestSetup interest = interestService.GetSalesOpportunityInterestSetup(interestParams); try { interestService.DeleteSalesOpportunityInterestSetup(interestParams); } catch (Exception e) { PrintExceptionMessage(e); }
|
|
See Also