ServicePRO SDK Help

RequestServicesManager..::..PrintRequestsListing Method

Retrieve the printable information of the request list in workspace.(can be exported to a file)

Namespace:  ServicePRO.Sdk.Windows.Managers
Assembly:  ServicePRO.Sdk.Windows (in ServicePRO.Sdk.Windows.dll)

Syntax


public void PrintRequestsListing(
	string userSessionKey,
	stcListItem selectedUser,
	clsEnumeration..::..hsQueueView queueView,
	clsEnumeration..::..hsListFilter listFilter,
	clsEnumeration..::..hsListServiceRequestType listType,
	int filterOptions,
	stcDataRange dateRange,
	string orderByClause,
	string whereClause,
	string reportTitle,
	Action<stcQueryField[], stcListItem, Exception> callbackAction
)
Public Sub PrintRequestsListing ( _
	userSessionKey As String, _
	selectedUser As stcListItem, _
	queueView As clsEnumeration..::..hsQueueView, _
	listFilter As clsEnumeration..::..hsListFilter, _
	listType As clsEnumeration..::..hsListServiceRequestType, _
	filterOptions As Integer, _
	dateRange As stcDataRange, _
	orderByClause As String, _
	whereClause As String, _
	reportTitle As String, _
	callbackAction As Action(Of stcQueryField(), stcListItem, Exception) _
)

Parameters

userSessionKey
Type: String
User’s Session Key.
Key property of the User Session Object of type stcSession.
The User Session has to be established by making a call to InitializeSystemAndSession() method in CoreServicesManager class as a first step with using ServicePRO SDK.
selectedUser
Type: HelpSTAR.PCL.Common..::..stcListItem
The selected user.
queueView
Type: HelpSTAR.PCL.Common..::..clsEnumeration..::..hsQueueView
The queue view type.
listFilter
Type: HelpSTAR.PCL.Common..::..clsEnumeration..::..hsListFilter
The list filter.
listType
Type: HelpSTAR.PCL.Common..::..clsEnumeration..::..hsListServiceRequestType
Type of the list.
filterOptions
Type: Int32
The filter options.
dateRange
Type: HelpSTAR.PCL.Common..::..stcDataRange
The date range information.
orderByClause
Type: String
The "order by" clause in query string.
whereClause
Type: String
The "where" clause in query string.
reportTitle
Type: String
The report title.
callbackAction
Type: Action<(Of <(<'array<stcQueryField>[]()[][], stcListItem, Exception>)>)>
The callback action.