Description
Deletes an existing service call problem type.
The service call problem type is specified by its key (prblmTypID), which is contained in the ServiceCallProblemTypeParams object passed to the method.
Syntax
Parameters
Remarks
Example
| Deleting a service call problem type (C#) | Copy Code |
|---|
public void Delete() { ServiceCallProblemTypeParams callProblemTypeParams = callProblemTypesService.GetDataInterface(ServiceCallProblemTypesServiceDataInterfaces.scptsServiceCallProblemTypeParams) as ServiceCallProblemTypeParams; callProblemTypeParams.ProblemTypeID = 3; try { callProblemTypesService.DeleteServiceCallProblemType(callProblemTypeParams); } catch (Exception e) { PrintExceptionMessage(e); } }
|
|
See Also