📚 SAP Business One SDK Help

GetServiceCallSolutionStatusList Method
See Also  Example

Description

Retrieves the keys and names of all the service call solution statuses.

Syntax

Visual Basic
Public Function GetServiceCallSolutionStatusList() As ServiceCallSolutionStatusParamsCollection

Example

Getting a list of service call solution statuses (C#)Copy Code
ServiceCallSolutionStatusParamsCollection solutionParamsCollection  
    = solutionStatusService.GetServiceCallSolutionStatusList(); 
int i = 1; 
foreach (ServiceCallSolutionStatusParams solutionStatusParams in solutionParamsCollection) 

    Console.WriteLine("item {0}: statusId:{1}, Name:{2}", i++, solutionStatusParams.StatusId, solutionStatusParams.Name); 

See Also