📚 SAP Business One SDK Help

GetServiceCallTypeList Method
See Also  Example

Description

Retrieves the keys and names of all the service call types.

Syntax

Visual Basic
Public Function GetServiceCallTypeList() As ServiceCallTypeParamsCollection

Example

Getting list of service call types (C#)Copy Code
ServiceCallTypeParamsCollection callTypeParamsCollection = callTypesService.GetServiceCallTypeList(); 
int i = 1; 
foreach (ServiceCallTypeParams typeParams in callTypeParamsCollection) 

     Console.WriteLine("item {0}: CallTypeId:{1}, Name:{2}", i++, typeParams.CallTypeID, typeParams.Name); 

See Also