ServicePRO SDK Help

RequestServicesManager..::..PrintRequesterHistoryList Method

Retrieve the printable information of the requester history list.(can be exported to a file)

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

Syntax


public void PrintRequesterHistoryList(
	string userSessionKey,
	int Listtype,
	stcDataRange dateRange,
	int ObjectID,
	string whereClause,
	string orderbyClause,
	string reportTitle,
	Action<stcListItem, Exception> callbackAction
)
Public Sub PrintRequesterHistoryList ( _
	userSessionKey As String, _
	Listtype As Integer, _
	dateRange As stcDataRange, _
	ObjectID As Integer, _
	whereClause As String, _
	orderbyClause As String, _
	reportTitle As String, _
	callbackAction As Action(Of 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.
Listtype
Type: Int32
The list type.
dateRange
Type: HelpSTAR.PCL.Common..::..stcDataRange
The date range information.
ObjectID
Type: Int32
The object identifier.
whereClause
Type: String
The "where" clause in query string.
orderbyClause
Type: String
The "order by" clause in query string.
reportTitle
Type: String
The report title.
callbackAction
Type: Action<(Of <(<'stcListItem, Exception>)>)>
The callback action.